<div dir="ltr">I'm not going make mkdir into a $MKDIR, most likely, but I would consider a platform file with something like this in it:<div><br></div><div>mkdir() { local args=( ); for i in "$@"; do [[ $i != "-v" && $i != "--verbose" ]] && args+=( "$i" ); done; "$(which mkdir)" "$args"; return $?; }<br>
</div><div><br></div><div>This would filter the -v.</div></div>