ssh login.itd.umich.edu
hostname
pwd
mkdir 506
cd 506
README.md
to document your work in this folder:
echo "## Stats 506" > README.md
echo " " >> README.md
mkdir ./hw; mkdir ./examples
mkdir ./data && mkdir ./data/csv
Note the use of ;
to execute multiple commands on the same line. It isn’t needed here, but &&
is used to execute the second command only if the first completes successfully. You can, but are not required to, read more about exit status and exit codes here.
cd $HOME
, cd ~
, or just cd
git clone https://github.com/jbhender/Stats506_F19.git
cd Stats506_F19
ls
tree
is in $PATH
using which
and, if so, see the hierarchy with tree
find -iname "*.Rmd"
cd
.mv
rm
Stats506_F19
repo using rm -rf ./Stats506_F19/
.=