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