Mercurial > repos > scisjnu123 > test
view svdetect/SVDetect_import.sh @ 9:e1ad03534fb2 draft
Uploaded
| author | scisjnu123 |
|---|---|
| date | Fri, 13 Sep 2019 02:11:51 -0400 |
| parents | abdb3ed0c740 |
| 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
