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