Last active
August 29, 2015 14:00
-
-
Save hashimotor/11167494 to your computer and use it in GitHub Desktop.
シェルスクリプトのテンプレート
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 | |
# http://rrreeeyyy.com/blog/2014/04/21/set-euo-pipefail/ | |
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html | |
# https://fumiyas.github.io/2013/12/24/initialize.sh-advent-calendar.html | |
set -euo pipefail | |
umask 0750 | |
export PATH="/bin:/usr/bin" | |
export LANG="C" | |
# ここからスタート |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment