Mercurial > repos > scisjnu123 > test
view svdetect/SVDetect_import.sh @ 4:abdb3ed0c740 draft
Uploaded
| author | scisjnu123 |
|---|---|
| date | Thu, 12 Sep 2019 07:41:16 -0400 |
| parents | |
| children |
line wrap: on
line source
#!/bin/bash while getopts "i:o:" optionName; do case "$optionName" in i) INPUT="$OPTARG";; o) OUTPUT="$OPTARG";; esac done rm $OUTPUT ln -s $INPUT $OUTPUT
