Created
May 14, 2015 03:44
-
-
Save naohaq/c5ae557cd7dbd669a3b0 to your computer and use it in GitHub Desktop.
Sum of 1 to 10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
fn=`mktemp` | |
echo -n 'a' >> $fn | |
echo -n 'aa' >> $fn | |
echo -n 'aaa' >> $fn | |
echo -n 'aaaa' >> $fn | |
echo -n 'aaaaa' >> $fn | |
echo -n 'aaaaaa' >> $fn | |
echo -n 'aaaaaaa' >> $fn | |
echo -n 'aaaaaaaa' >> $fn | |
echo -n 'aaaaaaaaa' >> $fn | |
echo -n 'aaaaaaaaaa' >> $fn | |
wc -c < $fn | |
rm -f $fn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment