8 lines
288 B
Bash
Executable File
8 lines
288 B
Bash
Executable File
#!/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 |