501  cd humboldt/f12cs279/279labs/279lab05
  502  ls
  503  ls *[bxj]*
  504  ls [bxj]
  505  ls ?
  506  echo "stuff" > a.txt
  507  ls *[bxj]*
  508  echo "stuff" > bx
  509  ls
  510  ls [bxj]
  511  ls [bxj][bxj]
  512  ls lab[0123456789].txt
  513  ls
  514  echo "stuff" > Bagel3
  515  echo "stuff" > BagelNo
  516  ls [A-Z]*[![:digit:]]
  517  echo "stuff" > B
  518  ls [A-Z]*[![:digit:]]
  519  ls [,[:alpha:]]
  520  echo "stuff" > .a
  521  more .a
  522  ls -a
  523  ls *.[acAC]
  524  ls
  525  ls > lab5.txt
  526  ls ?????using[] >> lab5.txt
  527  history 2 >> lab5.txt
  528  emacs little.sh
  529  chmod 700 little.sh
  530  little.sh
  531  little.sh > little-output
  532  more little-output 
  533  little.sh 2> little-errors
  534  more little-errors 
  535  little.sh > litout 2> literr
  536  more litout
  537  more literr
  538  little.sh > litout 2>> literr
  540  more literr
  541  little.sh > exp1 2> exp1
  542  more exp1
  543  little.sh > exp1 2>> exp1
  544  more exp1
  545  little.sh >> exp1 2>> exp1
  546  more exp1
  547  little.sh >> exp1 2>> exp1
  548  more exp1
  549  little.sh >> exp1 2>> exp1
  551  echo \$TERM
  552  echo $TERM
  553  echo -e "hi there! \n how are you?"
  554  echo "my term is $TERM"
  555  echo 'my term is $TERM'
  556  history > 279lab05-history-I-hope.txt