HappyGoLucky

Web系サーバーサイド寄りの自動化大好きエンジニアの徒然なるブログ

FLOCSSなディレクトリ・ファイルを作成するシェル

無理やりワンライナーっぽくしてみた。

echo foundation/{_base,_reset} \
  layout/{_footer,_header,_main,_sidebar} \
  object/component/{_button,_dialog,_grid,_media} \
  object/project/{_articles,_comments,_gallery,_profile} \
  object/utility/{_align,_clearfix,_margin,_position,_size,_text} \
  | \
  xargs -n1 -I% bash -c \
  'mkdir -p $(dirname scss/%); [ ! -f scss/%.scss ] && { : > scss/%.scss; echo "@import \"%\";" >> scss/app.scss; }'

もうちょっと綺麗にできるといいなぁ。