...
Exercise: How many tasks are specified in the wayness.cmds file?
| Expand | |||||
|---|---|---|---|---|---|
| |||||
wc --help | |||||
| Expand | |||||
| |||||
Find the number of lines in the wayness.cmds commands file using the wc (word count) command with the -l (lines) option:
The file has 16 lines, representing 16 tasks. |
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
idev -m 60 -N 1 -A OTH21164 -p normal --reservation=CoreNGS-Tuecore-ngs-class-0603 |
Notes:
- -p normal requests nodes on the normal queue
- this is the default for our reservation, while the development queue is the normal default
- -m 60 asks for a 60 minute session
- -A OTH21164 specifies the TACC allocation/project to use
- -N 1 asks for 1 node
- --reservation=CoreNGS-Tuecore-ngs-class-0603 gives us priority access to TACC nodes for the today's class. You normally won't use this option.
...