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