You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
194 B
8 lines
194 B
sed -i "1s?^?cd "`pwd`"\n?" Discworld
|
|
|
|
if [[ $PREFIX = *"com.termux"* ]]; then
|
|
ln -s "$(pwd)/Discworld" $PREFIX/bin/disc;
|
|
else
|
|
mkdir -p ~/bin
|
|
ln -s "$(pwd)/Discworld" ~/bin/disc;
|
|
fi
|