Skip to content

Instantly share code, notes, and snippets.

@kou029w
Created March 30, 2017 13:53
Show Gist options
  • Save kou029w/344d3bb949a369e1b80bc17feea5fab9 to your computer and use it in GitHub Desktop.
Save kou029w/344d3bb949a369e1b80bc17feea5fab9 to your computer and use it in GitHub Desktop.
100までの素数を列挙する
#!/bin/bash
:()(read i&&(echo $i;awk \$1%$i|:));seq 2 99|:
@kou029w
Copy link
Author

kou029w commented Mar 30, 2017

実行結果

$ ./primes.bash
2
3
5
7
11
13
17
19
23
29
31
37
41
43
47
53
59
61
67
71
73
79
83
89
97

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment