- [How to Access Remote Server](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#How_to_Access_Remote_Server "How to Access Remote Server")
- [List of Basic SSH Commands](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#List_of_Basic_SSH_Commands "List of Basic SSH Commands")
- [1. ls Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#1_ls_Command "1. ls Command")
- [2. cd Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#2_cd_Command "2. cd Command")
- [3. mkdir Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#3_mkdir_Command "3. mkdir Command")
- [4. touch Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#4_touch_Command "4. touch Command")
- [5. rm Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#5_rm_Command "5. rm Command")
- [6. cat Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#6_cat_Command "6. cat Command")
- [7. pwd Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#7_pwd_Command "7. pwd Command")
- [8. cp Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#8_cp_Command "8. cp Command")
- [9. mv Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#9_mv_Command "9. mv Command")
- [10. grep Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#10_grep_Command "10. grep Command")
- [11. find Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#11_find_Command "11. find Command")
- [12. vi/nano Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#12_vinano_Command "12. vi/nano Command")
- [13. history Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#13_history_Command "13. history Command")
- [14. clear Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#14_clear_Command "14. clear Command")
- [15. tar Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#15_tar_Command "15. tar Command")
- [16. wget Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#16_wget_Command "16. wget Command")
- [17. du Command](https://www.hostinger.com/tutorials/ssh/basic-ssh-commands#17_du_Command "17. du Command")
Sample "find" Commands:
* find ./ABC -name t\_\*\_\*.jpg -delete
* Searches ABC **sub**directory for jpg files starting with t and having two underscores, then deletes the files.
* find -name t_*_*.jpg -print
* Display a list of files without deleting
Ctrl-C to terminate list/process