pclish/install.sh

15 lines
382 B
Bash
Raw Permalink Normal View History

2021-02-28 20:38:28 +00:00
# PCLISH - Python Command Line Shell
# Installation Script
2021-02-28 21:01:40 +00:00
echo Cloning Repo to /tmp/pclish-installer/files
2021-02-28 20:38:28 +00:00
git clone https://tildegit.org/jaydenmw/pclish ~/.tmp/pclish-installer/files
2021-02-28 21:01:40 +00:00
rm ~/.tmp/pclish-installer/files/LICENSE
2021-02-28 20:38:28 +00:00
echo Installing...
2021-02-28 21:01:40 +00:00
mv /tmp/pclish-installer/files/* ~/.local/bin
2021-02-28 21:05:00 +00:00
echo Making shell executable
chmod +x ~/.local/bin/shell.py
2021-02-28 20:38:28 +00:00
echo Installation Complete