mah/install.sh

10 lines
162 B
Bash
Raw Normal View History

2023-05-13 22:53:28 -04:00
#!/bin/bash
INSTALL_DIR=/usr/bin/
SCRIPT_NAME=mah
command sudo cp mah $INSTALL_DIR/$SCRIPT_NAME
echo Succesfully installed $SCRIPT_NAME at $INSTALL_DIR
exit 0