Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 532 Bytes

intro_to_linux_08_solution.md

File metadata and controls

24 lines (17 loc) · 532 Bytes
  1. Navigate to the Lab03 directory.
$ cd
$ cd IntroToLinuxHPC/Lab03
  1. Open up the file called tutorial.txt and follow the instructions within.
$ vim tutorial.txt
 
 # Practice basic commands within until you feel comfortable
  1. Create a new file called my_name.txt, write your name within the file, save and quit, then print the contents of the file to screen.
$ vim my_name.txt
> 'i' to enter insert mode, type your name, press <Esc>, press :wq
$ cat my_name.txt

Return