7 lines
66 B
Bash
Executable File
7 lines
66 B
Bash
Executable File
#!/bin/sh
|
|
if [ -z "$*" ]; then
|
|
mflag -Sf
|
|
else
|
|
mflag -Sf "$@"
|
|
fi
|