...
Code Block |
---|
--------------------- Project balances for user abattenh ---------------------- | Name Avail SUs Expires | Name Avail SUs Expires | | OTH21095 905 2023-09-30 | MCB21106 1496 2023-09-30 | | OTH21164 215 2024-05-31 | OTH21180 899 2024-03-31 | ------------------------ Disk quotas for user abattenh ------------------------ | Disk Usage (GB) Limit %Used File Usage Limit %Used | | /scratch 0.7 0.0 0.00 567 0 0.00 | | /home1 0.0 11.7 0.01 232 0 0.00 | | /work 169.0 1024.0 16.50 79361 3000000 2.65 | ------------------------------------------------------------------------------- |
changing TACC file systems
When you first login, you start in your Home directory. Use the cd, cdw and cds commands to change to your other file systems. Notice how your command prompt helpfully changes to show your location.
...
Anchor | ||||
---|---|---|---|---|
|
wget
Get ready to run wget from the directory where you want to put the data.
...
Code Block | ||||
---|---|---|---|---|
| ||||
mkdir -p $SCRATCH/data/test1 cp $CORENGS/misc/small.fq $SCRATCH/data/test1/ ls $SCRATCH/data/test1 # or.. cds mkdir -p data/test1 cd data/test1 cp $CORENGS/misc/small.fq . # or.. mkdir -p ~/scratch/data/test1 # use the symbolic link in your Home directory cd ~/scratch/data/test1 cp $CORENGS/misc/small.fq . ls |
...
Notice the different ways of referring to a directory using Absolute or Relative pathname syntax.
Now copy an entire directory to your Scratch area. The -r option says "recursive".
...