5 lines
157 B
Bash
Executable file
5 lines
157 B
Bash
Executable file
#!/bin/sh
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
sudo cp "$SCRIPT_DIR/mailfmt" /usr/bin/mailfmt
|
|
echo "mailfmt has been installed to /usr/bin/mailfmt."
|