Created
August 28, 2016 08:53
-
-
Save nishinoshake/657d432100e8560aa5117523ea02febd to your computer and use it in GitHub Desktop.
snippet計算ようのshell
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
#!/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