Added a welcome message when typing pm and added some ascii art

This commit is contained in:
ManOfGoldForever 2026-02-02 00:05:09 -05:00
parent 4b8d4eb0c6
commit 62caefcd22
9 changed files with 95 additions and 5 deletions

11
linux-mac-install.sh Executable file
View 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