Created
April 11, 2019 15:39
-
-
Save YuukiToriyama/d2e6232141b5c7a6c619810026ef7d2c to your computer and use it in GitHub Desktop.
Cheap edition unko.tower
This file contains hidden or 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
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