Difference between revisions of "Applications/Utilities"
From HPC
MSummerbell (talk | contribs) m (Reverted edits by MSummerbell (talk) to last revision by Pysdlb) |
m |
||
Line 48: | Line 48: | ||
* [http://www.gnu.org/ http://www.gnu.org/] | * [http://www.gnu.org/ http://www.gnu.org/] | ||
− | [[ | + | {| |
+ | |style="width:5%; border-width: 0" | [[File:icon_home.png]] | ||
+ | |style="width:95%; border-width: 0" | | ||
+ | * [[Main_Page|Home]] | ||
+ | * [[Applications|Application support]] | ||
+ | * [[General|General]] | ||
+ | * [[Training|Training]] | ||
+ | * [[Programming|Programming support]] | ||
+ | |- | ||
+ | |} |
Revision as of 10:15, 5 April 2017
Application Details
- Description : Utilities is a collection, including zip, unzip, bzip2, bunzip2, git, and wget
- Versions : Various
- Module names : utilities/multi
- License: GNU license(s)
Usage Examples
Batch Submission
#!/bin/bash #SBATCH -J -20 #SBATCH -N 1 #SBATCH --ntasks-per-node=20 #SBATCH -o test.out #SBATCH -e test.err #SBATCH -p compute #SBATCH --exclusive #SBATCH --time=2-00:00:00 echo $SLURM_NTASKS echo $SLURM_JOB_NODELIST echo $SLURM_HOSTS module purge module add utilities/multi wget http://www.example.com/somedatatodownload.zip unzip somedatatodownload.zip /home/user/processthisdata mydatadownloaded
[username@login01 ~]$ sbatch downloadprocess.job Submitted batch job 389511