Skip to content

Instantly share code, notes, and snippets.

@hashimotor
Last active August 29, 2015 14:00
Show Gist options
  • Save hashimotor/11167494 to your computer and use it in GitHub Desktop.
Save hashimotor/11167494 to your computer and use it in GitHub Desktop.
シェルスクリプトのテンプレート
#!/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