Skip to content

Instantly share code, notes, and snippets.

@plainspooky
Created June 25, 2017 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plainspooky/07cae275bcd16efeaf9f54408e349d41 to your computer and use it in GitHub Desktop.
Save plainspooky/07cae275bcd16efeaf9f54408e349d41 to your computer and use it in GitHub Desktop.
#!/bin/bash
let CASE=0
for A in 'Ge' 'Gi' 'Gy' 'J' ; do
for B in 'v' 'w' ; do
for C in 'n' 'nn'; do
for D in 'e' 'i' 'y' ; do
let CASE++
printf "Caso %02d - %so%sa%s%s%s\n" $CASE $A $B $C $D
done
done
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment