summaryrefslogtreecommitdiff
path: root/2021/9.sh
blob: 739d62d8733cab7433ed391c420677e0a7410ca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
if [[ $# -ge 1 ]]; then
	if [[ $1 = c ]]; then
		xsel -bo | ./9pre | ./9
	elif [[ $1 = - ]]; then
		./9pre | ./9
	else
		echo >&2 "What are you even doing with your command line params"
		./9pre <9.in | ./9
	fi
else
	./9pre <9.in | ./9
fi