12 lines
200 B
Plaintext
12 lines
200 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
if [[ -e $1 ]]; then
|
||
|
target=`basename $1`
|
||
|
if [[ $target == "venv_prompt.sh" ]]; then
|
||
|
target="10_$target"
|
||
|
else
|
||
|
target="50_$target"
|
||
|
fi
|
||
|
cd enabled
|
||
|
ln -s ../$1 $target
|
||
|
fi
|