10 lines
162 B
Bash
10 lines
162 B
Bash
![]() |
#!/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
|