diff options
-rwxr-xr-x | 2021/9.sh | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,13 +1,14 @@ #!/usr/bin/env bash +function post() { sed 's/i\(32\|64\)$//'; } if [[ $# -ge 1 ]]; then if [[ $1 = c ]]; then - xsel -bo | ./9pre | ./9 + xsel -bo | ./9pre | ./9 | post elif [[ $1 = - ]]; then - ./9pre | ./9 + ./9pre | ./9 | post else echo >&2 "What are you even doing with your command line params" - ./9pre <9.in | ./9 + ./9pre <9.in | ./9 | post fi else - ./9pre <9.in | ./9 + ./9pre <9.in | ./9 | post fi |