ips-wrappers

(★ 10)

IPS wrapper / helper codes.

File Explorer

  • .gitignore
  • .gitmodules
  • conf.ips.edison
  • conf.ips.gpufusion
  • env.COMPX_codes
  • env.ips
  • env.ips.cori
  • env.ips.edison
  • env.ips.gpufusion
  • env.ips.megabucky
  • env.TORIC_binary
  • README.md
  • setPermissions.sh
  • setPermissionsWWW.sh
  • template.batchscript.ips.edison
  • template.ips.config
  • use_local_examples
  • use_local_wrappers

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

csh

View Details ▼

The shell (command interpreter) with C-like syntax.
See also: `tcsh`.

csh

Start an interactive shell session:

csh -f

Start an interactive shell session [f]aster without loading startup configs:

csh -c "{{echo 'csh is executed'}}"

Execute specific [c]ommands:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

sbatch

View Details ▼

Submit a batch job to the SLURM scheduler.

sbatch {{path/to/job.sh}}

Submit a batch job:

sbatch --job-name={{myjob}} {{path/to/job.sh}}

Submit a batch job with a custom name:

sbatch --time={{00:30:00}} {{path/to/job.sh}}

Submit a batch job with a time limit of 30 minutes:

// repository documentation