** Commands run locally ** ps bash ps exit echo jessica echo -n jessica echo "hello there" echo hello there echo you are a * echo "you are a *" echo "your current directory: `pwd`" NAME=Jessica $NAME echo $NAME echo $Name FILE="ls *.txt" echo $FILE FILE="`ls *.txt`" echo $FILE FILE="hello $NAME" echo $FILE FILE='`ls *.txt`' echo $FILE x=5 y=6 echo "$x + $y" let z="$x + $y" echo z echo $z x=3 echo x echo $x echo "$x" echo '$x' echo \'$x\' echo 'x' echo $HOSTNAME echo $PS1 echo $SHELL echo $USER echo $PATH ./slide7.sh PATH="" echo $PATH PATH="${PATH}:." echo $PATH slide7.sh chmod u-x slide7.sh slide7.sh cd finalexample/ seq 9 chmod u+x createhw.sh ./createhw.sh ./createhw.sh 4 ./createhw.sh 4 ./createhw.sh 7 ./createhw.sh 100 seq -3 3 ** Commands run on attu ** pico simple.sh ls chmod u+x simple.sh ./simple.sh