Added a welcome message when typing pm and added some ascii art
This commit is contained in:
parent
4b8d4eb0c6
commit
62caefcd22
9 changed files with 95 additions and 5 deletions
11
linux-mac-install.sh
Executable file
11
linux-mac-install.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
BINARY="pm"
|
||||
|
||||
if [ -f "./$BINARY" ]; then
|
||||
echo "Installing $BINARY to /usr/local/bin..."
|
||||
sudo cp "./$BINARY" /usr/local/bin/
|
||||
sudo chmod +x /usr/local/bin/$BINARY
|
||||
echo "Done! You can now use 'pm' from any terminal."
|
||||
else
|
||||
echo "Error: Binary '$BINARY' not found. Make sure you are in the folder with the downloaded file."
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue