This project was on practicing Bash skills with a command line challenge game.
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;
- Connect to your Remote Server (sandbox environment).
$ sftp <username>@<remote_server__hostname>- Navigate to the directory on your remote server that you want to upload the
*.pngfiles to.
$ cd </path/to/directory>- Navigate to the directory on your local machine that you want to upload the
*.pngfiles from.
$ lcd </path/to/directory>- Use the
putcommand to upload the*.pngfiles to your remote server. (to verify step 3 & 4, use:pwd&lpwdrespectively)
$ put </path/to/file>- Now that the files are on your remote server,
pushthe files to GitHub and you are done.
Each file contains the solution to a task in the project.
- 0-first_9_tasks.png: A screenshot after Completing the first 9 tasks.
- 1-next_9_tasks.png: A screenshot after Completing the 9 next tasks, getting to 18 total.
- 2-next_9_tasks.png: A screenshot after Completing the 9 next tasks, getting to 27 total.