Skip to content

Instantly share code, notes, and snippets.

@naohaq
Created May 14, 2015 04:36
Show Gist options
  • Save naohaq/40fcc973c7277f8314f0 to your computer and use it in GitHub Desktop.
Save naohaq/40fcc973c7277f8314f0 to your computer and use it in GitHub Desktop.
Sum of 1 to 10
#!/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