# this is an edited version of the history file of commands done during 
# CS 279 - Week 1 lab

 1001  pwd
 1002  ls
 1003  pwd > looky.txt
 1004  ls
 1005  ls > lotsa-stuff.txt
 1006  ls
 1007  cat looky.txt
 1008  cat lotsa-stuff.txt
 1009  pwd > lotsa-stuff.txt
 1010  cat lotsa-stuff.txt
 1011  pwd >> lotsa-stuff.txt
 1012  cat lotsa-stuff.txt
 1013  pwd >> lotsa-stuff.txt
 1014  cat lotsa-stuff.txt
 1015  cat lotsa-stuff.txt looky.txt > more-stuff.txt
 1016  cat more-stuff.txt
 1017  pwd > file1.txt
 1018  ls > file2.txt
 1019  cat file1.txt file2.txt > file3.txt
 1020  cat file1.txt
 1021  file2.txt
 1022  cat file2.txt
 1023  cat file3.txt
 1024  more file3.txt
 1025  mkdir 279lab01
 1026  ls
 1027  cd 279lab01
 1028  ls
 1029  pwd
 1030  cd
 1031  pwd
 1032  cd 279lab01
 1033  cd ..
 1034  cd 279lab01
 1035  ls
 1036  pwd > file1.txt
 1037  ls
 1038  more file1.txt
 1039  cp file1.txt moo
 1040  ls
 1041  cat moo
 1042  cat file1.txt
 1043  cp moo moo
 1044  ls > file2.txt
 1045  cp file2.txt moo
 1046  more moo
 1047  ls
 1048  cp ../looky.txt ../loc.txt .
 1049  ls
 1050  mkdir save-me
 1051  cp file1.txt file2.txt looky.txt moo save-me
 1052  ls
 1053  ls save-me
 1054  mkdir save2
 1055  cp * save2
 1056  ls
 1057  ls save2
 1058  more file1.txt 
 1059  cat * | more
 1060  ls .. > toobig.txt
 1061  cat * | more
 1062  ls
 1063  rm -i toobig.txt
 1064  rm toobig.txt
 1065  rm moo
 1066  rm *
 1067  ls
 1068  more moo
 1069  mv moo ARRRRRG
 1070  ls
 1071  more ARRRRRG 
 1072  mv file1.txt
 1073  mv file1.txt file1.txt
 1074  ls
 1075  mkdir save3
 1076  mv * save3
 1077  ls
 1078  cd save3
 1079  ls
 1080  cp * ..
 1081  cd ..
 1082  ls
 1083  ls *.txt
 1084  ls l*.txt
 1085  more *
 1086  grep moo *
 1087  grep moo
 1088  ps
 1089  ps g
 1090  ps x
 1091  ps a
 1092  ps a | grep moo
 1093  ps a | grep st10
 1094  nano newfile.txt
 1095  more newfile.txt
 1096  more moo
 1097  ls
 1098  more file1.txt
 1099  more newfile.txt
 1100  cat newfile.txt file1.txt > file3.txt
 1101  more file3.txt
 ...
 1112  ls
 1113  nano lab1.txt
 1114  ~/279submit
 1115  ~st10/279submit
 1116  ls
 1117  ls submitted
 1118  ls
 1119  ~st10/279submit
 1120  cd submitted
 1121  ls
 1122  ~st10/unziptar_all
 1123  ls
 1124  ls *
 1125  history
 1126  history > ../history-after-lab.txt