...
Code Block |
---|
language | bash |
---|
title | Single file copy with cp |
---|
|
mkdir -p $SCRATCH/data/test1
cp $CORENGS/misc/small.fq $SCRATCH/data/test1/
ls $SCRATCH/data/test1
# or..
mkdir -p ~/scratch/data/test1 # use the symbolic link in your Home directory
cd ~/scratch/data/test1
cp $CORENGS/misc/small.fq .
ls |
...
Code Block |
---|
language | bash |
---|
title | Directory copy with cp |
---|
|
mkdir -p $SCRATCH/data
cds
cd data
cp -r $CORENGS/general/ general/ |
Exercise: What files were copied over?
Expand |
---|
|
ls general # or tree $SCRATCH/data/general |
Expand |
---|
|
BEDTools-User-Manual.v4.pdf SAM1.pdf SAM1.v1.4.pdf |
...