I'm not going make mkdir into a $MKDIR, most likely, but I would consider a platform file with something like this in it:
mkdir() { local args=( ); for i in "$@"; do [[ $i != "-v" && $i !=
"--verbose" ]] && args+=( "$i" ); done; "$(which mkdir)" "$args"; return
$?; }
This would filter the -v.
_______________________________________________ Password-Store mailing list [email protected] http://lists.zx2c4.com/mailman/listinfo/password-store
