
In order to comment to an SFTP remote location using the Terminal, you can make use of the SFTP Terminal Command by providing the username followed by an @ (at sign) and the domain of the location you want to connect.
% sftp user-name@sftp-server-host-name.com
(user-name@sftp-server-host-name.com) Password:
Connected to sftp-server-host-name.com.
sftp>
You will be prompted to enter the password and once you do that, you will see a message that you are connected and the prompt will change to sftp>
The SFTP protocol makes use of the SSH Protocol for authentication.
If you have the IP address instead of the domain name provided, then you can use username@IP-address instead,
Example: Connect to SFTP destination using IP address,% sftp user@192.168.0.4
(user@192.168.0.4) Password:
Connected to 192.168.0.4
sftp>
✏️ The examples provided were performed on macOS Terminal Zsh Shell, but should work with all Linux/Unix Kernal Shells.
- FileZilla Connection time out Failed to retrieve directory listing
- How to switch between sftp and Terminal shell
- How to connect to the SFTP location using Terminal command
- [Solution] SFTP File 22 not found Connection closed
- How to Copy a remote file to local using SFTP command?
- List of 60 useful FTP Client Commands to access server
- Check help on commands while being on sftp> prompt
- 10 FTP SFTP Clients and Alternatives
- How to SFTP to port different than 22 (Custom port)
- Fix Power Automate FLOW error - InvalidTemplate Unable to process template language expressions in action - Microsoft
- What is Android Toast.LENGTH_SHORT and Toast. LENGTH_LONG durations - Android
- Clone Bitbucket repo in VS Code - HowTos
- Android Installation error: INSTALL_FAILED_OLDER_SDK on Device - Android
- How to enable Do Not Disturb (DND) mode in Microsoft Teams - Teams
- Java code to check Internet Connection on Android Device Programmatically - Android
- How to hide lines in Notepad++ - NotepadPlusPlus
- Format Code in Visual Studio - VS Code [Mac/Windows/Linux] - HowTos