1 date 2 fortune 3 fortune 4 fortune 5 fortune 6 pwd 7 ls 8 ls cse413 9 ls cse303 10 mv cse413/hamlet.txt cse413/lear.txt . 11 ls -l 12 cat hamlet.txt 13 cat 14 cat >story.txt 15 ls 16 cat story.txt 17 cat sequel.txt 18 ls 19 cat sequel.txt 20 cp story.txt morestory.txt 21 more hamlet.txt 22 less lear.txt 23 pwd 24 ls -l 25 echo hello there 26 echo hamlet.txt 27 echo *.txt 28 cat *.txt 29 ls -l 30 mv *.txt cse303 31 ls -l 32 ls -l cse303 33 cat story.txt 34 pwd 35 cat cse303/story.txt 36 pwd 37 cat /home/perkins/cse303/story.txt 38 ls 39 pwd 40 cd cse303 41 ls -l 42 cd ~ 43 echo ~ 44 ls ~ 45 cd cse303 46 ls 47 ls ~ 48 ls ~/cse303 49 ls ~root 50 echo ~root 51 cat /etc/passwd 52 grep perkins /etc/passwd 53 grep Hamlet hamlet.txt 54 grep Dane hamlet.txt 55 grep -n Dane hamlet.txt 56 fortune 57 man bash 58 info bash 59 ls -l 60 chmod +w story.txt 61 ls -l 62 chmod a+w story.txt 63 ls -l 64 chmod 400 morestory.txt 65 ls -l 66 chmod sequel.txt 644 67 chmod 644 sequel.txt 68 ls -l 69 echo *.txt 70 echo * .txt 71 ! 72 echo * .txt 73 echo hello 74 echo hello 75 alias repeat=echo 76 alias 77 repeat after me 78 alias howdy=echo hello 79 alias howdy="echo hello" 80 howdy 81 emacs & 82 history >lec2.history