Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Command line for the win

This project was on practicing Bash skills with a command line challenge game.

Summary

I learnt about SFTP and SFTP File Transfer. After completing the levels and taking screenshots, I used the following steps to use the SFTP command-line tool to upload the *.png files correctly;

  1. Connect to your Remote Server (sandbox environment).
$ sftp <username>@<remote_server__hostname>
  1. Navigate to the directory on your remote server that you want to upload the *.png files to.
$ cd </path/to/directory>
  1. Navigate to the directory on your local machine that you want to upload the *.png files from.
$ lcd </path/to/directory>
  1. Use the put command to upload the *.png files to your remote server. (to verify step 3 & 4, use: pwd & lpwd respectively)
$ put </path/to/file>
  1. Now that the files are on your remote server, push the files to GitHub and you are done.

Files

Each file contains the solution to a task in the project.