1 2 3 4 5 6 7 8 9
cat > /usr/local/bin/sudo << "EOF" #!/bin/sh # Drop any option arguments. while [[ $# -ge 0 && $1 = -* ]]; do shift done "$@" EOF