diff --git a/not/not b/not/not new file mode 100755 index 0000000..58eccbc --- /dev/null +++ b/not/not @@ -0,0 +1,9 @@ +#!/bin/bash + +if "$@"; then + exit 1 +else + exit 0 +fi + +