Changes between Version 2 and Version 3 of cypress/BasicLinuxComands/Exercise
- Timestamp:
- 08/18/15 21:41:39 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/BasicLinuxComands/Exercise
v2 v3 8 8 * Navigate to your home directory by using the '''cd ~''' command. 9 9 * Check that you are in your home directory by using the '''pwd''' command. 10 11 10 {{{ 12 11 [tuhpc002@cypress1 ~]$ cd ~ … … 33 32 34 33 * Now, check the contents of the directory "/lustre/project/workshop/textfiles" using the '''ls''' command and the absolute path directory (Hint, you can use the tab key to autocomplete partially typed commands) 35 36 34 {{{ 37 35 [tuhpc002@cypress1 textfiles]$ ls /lustre/project/workshop/textfiles/ … … 51 49 52 50 * Create a backup of the "numbers.txt" file named "numbers_backup.txt" using the '''cp''' command. 53 54 51 {{{ 55 52 [tuhpc002@cypress1 examples]$ cp numbers.txt numbers_backup.txt