Created
May 14, 2015 04:36
-
-
Save naohaq/40fcc973c7277f8314f0 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 | |
cmd=$(cat <<EOF) | |
s/j/.i/g | |
s/i/.h/g | |
s/h/.g/g | |
s/g/.f/g | |
s/f/.e/g | |
s/e/.d/g | |
s/d/.c/g | |
s/c/.b/g | |
s/b/.a/g | |
s/a/./g | |
EOF | |
echo -n 'abcdefghij' | sed -e "$cmd" | wc -c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment