How to get a file from a remote server (like gamedev) mweeks@air:Desktop$ sftp mweeks@gamedev.cs.gsu.edu mweeks@gamedev.cs.gsu.edu's password: Connected to mweeks@gamedev.cs.gsu.edu. sftp> cd public_html sftp> ls feature_demo.html features.png index.html index_before_new_link.html manLRUD_32x32.png mouse_canvas.html mouse_canvas2.html simple_animation.html sftp> get feature_demo.html Fetching /home/mweeks/public_html/feature_demo.html to feature_demo.html /home/mweeks/public_html/feature_demo.html 100% 7222 1.0MB/s 00:00 sftp> quit mweeks@air:Desktop$ ls -l *html -rw-r--r-- 1 mweeks staff 7222 Feb 13 11:25 feature_demo.html -rw-r--r--@ 1 mweeks staff 7497 Feb 13 11:23 featuredemo1.html How to send a file to a remote server (like gamedev) mweeks@air:Desktop$ sftp mweeks@gamedev.cs.gsu.edu mweeks@gamedev.cs.gsu.edu's password: Connected to mweeks@gamedev.cs.gsu.edu. sftp> cd public_html sftp> ls feature_demo.html features.png index.html index_before_new_link.html manLRUD_32x32.png mouse_canvas.html mouse_canvas2.html simple_animation.html sftp> put featuredemo1.html Uploading featuredemo1.html to /home/mweeks/public_html/featuredemo1.html featuredemo1.html 100% 7497 1.6MB/s 00:00 sftp> Get a local list of files, and a remote list of files sftp> lls -l feat* -rw-r--r-- 1 mweeks staff 7222 Feb 13 11:25 feature_demo.html -rw-r--r--@ 1 mweeks staff 7497 Feb 13 11:23 featuredemo1.html sftp> ls -l feat* -rw-r--r-- ? 30002 30002 7222 Feb 13 11:06 feature_demo.html -rw-r--r-- ? 30002 30002 7497 Feb 13 11:27 featuredemo1.html -rw-r--r-- ? 30002 30002 2349 Feb 12 16:56 features.png sftp> Print the Working Directory (on the remote machine) versus the Local one sftp> pwd Remote working directory: /home/mweeks/public_html sftp> lpwd Local working directory: /Users/mweeks/Desktop sftp> Locally Change the Directory and Change the Directory on the remote computer sftp> lcd .. sftp> lpwd Local working directory: /Users/mweeks sftp> cd .. sftp> pwd Remote working directory: /home/mweeks sftp> exit