Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Created August 28, 2016 08:53
Show Gist options
  • Save nishinoshake/657d432100e8560aa5117523ea02febd to your computer and use it in GitHub Desktop.
Save nishinoshake/657d432100e8560aa5117523ea02febd to your computer and use it in GitHub Desktop.
snippet計算ようのshell
#!/bin/bash
snippet_file='snippet.txt'
window_size=320
# ファイルを空にする
echo -n > ${snippet_file}
for i in {1..40}
do
vw=`echo "scale=4; 100*$i/$window_size" | bc`
echo -e "\t'css ${i}vw':" >> ${snippet_file}
echo -e "\t\t'prefix': '${i}w'" >> ${snippet_file}
echo -e "\t\t'body': '${vw}vw'" >> ${snippet_file}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment