Skip to content

Instantly share code, notes, and snippets.

@tamanugi
Created July 7, 2016 09:08
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 tamanugi/b47e4cc37c32e2b1697bd22d5d0ab2e4 to your computer and use it in GitHub Desktop.
Save tamanugi/b47e4cc37c32e2b1697bd22d5d0ab2e4 to your computer and use it in GitHub Desktop.
七夕なのでシェルスクリプトで短冊に願いごと書いた ref: http://qiita.com/tamanugi/items/b4a23d6f9102a29fcad2
% ./wish.sh 今日も一日がんばるぞい
┏┷┓
┃今┃
┃日┃
┃も┃
┃一┃
┃日┃
┃が┃
┃ん┃
┃ば┃
┃る┃
┃ぞ┃
┃い┃
┗━┛
% ./wish.sh かえりたい
┏┷┓
┃か┃
┃え┃
┃り┃
┃た┃
┃い┃
┗━┛
#!/bin/bash
echo "┏┷┓"
for s in `echo $1 | grep -o '.'`; do
echo "┃${s}┃"
done
echo "┗━┛"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment