-
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathprimes.sh
More file actions
executable file
·40 lines (35 loc) · 1022 Bytes
/
primes.sh
File metadata and controls
executable file
·40 lines (35 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env bash
#
# primes.sh - feed primes(1) IOCCC entry 1994/weisberg
#
# make sure CC is set so that when we do make CC="$CC" it isn't empty. Doing it
# this way allows us to have the user specify a different compiler in an easy
# way.
if [[ -z "$CC" ]]; then
CC="cc"
fi
make CC="$CC" all >/dev/null || exit 1
PRIMES=$(type -P primes)
COUNT=15
if [[ "$#" -ge 1 ]]; then
COUNT="$1"
if ! [[ $COUNT =~ ^[0-9]+$ ]]; then
echo "not a number: $COUNT" 1>&2
exit 1
fi
fi
REV="$(type -P rev)"
if [[ -n "$PRIMES" && -n "$REV" ]]; then
read -r -n 1 -p "Press any key to find primes in ./weisberg | head -n $COUNT, reversed: "
echo 1>&2
while read -r n; do primes "$n" $((n + 1)); done < <((./weisberg | head -n "$COUNT" | "$REV" ))
else
echo "primes not installed" 1>&2
echo 1>&2
echo "See the following GitHub repo:" 1>&2
echo 1>&2
echo " https://github.com/vattam/BSDGames" 1>&2
echo 1>&2
echo "and after installing it try running this again."
exit 1
fi