Skip to content

Instantly share code, notes, and snippets.

@YuukiToriyama
Created April 11, 2019 15:39
Show Gist options
  • Save YuukiToriyama/d2e6232141b5c7a6c619810026ef7d2c to your computer and use it in GitHub Desktop.
Save YuukiToriyama/d2e6232141b5c7a6c619810026ef7d2c to your computer and use it in GitHub Desktop.
Cheap edition unko.tower
function tower_unko() { seq 1 $1 | xargs -I@ bash -c 'yes "+" | head -@ | xargs' | awk 'BEGIN{print " 👑"}{print "(", $0, ")"}'; }
tower_unko 5
# 👑
#( + )
#( + + )
#( + + + )
#( + + + + )
#( + + + + + )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment