8 lines
288 B
Plaintext
8 lines
288 B
Plaintext
|
#!/bin/bash
|
||
|
if command -v python >/dev/null 2>&1; then
|
||
|
mkdir -p $BASH_SHELL_HOSTNAME/load/coding
|
||
|
ln -s $BASH_SHELL_HOST/lang/python/python.lib $BASH_SHELL_HOSTNAME/load/coding/python
|
||
|
else
|
||
|
echo python has not been installed on this machine or is not in the path
|
||
|
echo do so and try again
|
||
|
fi
|