projects
/
recurse.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
rest of the app
[recurse.git]
/
cracklepop.sh
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
#!/bin/sh
2
for i in $(seq 1 100); do
3
if [ $((i % 15)) -eq 0 ]; then
4
echo "CracklePop"
5
elif [ $((i % 3)) -eq 0 ]; then
6
echo "Crackle"
7
elif [ $((i % 5)) -eq 0 ]; then
8
echo "Pop"
9
else echo "$i"
10
fi
11
done