Skip to content

Instantly share code, notes, and snippets.

@msakamoto-sf
Created March 24, 2018 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msakamoto-sf/6c57b719b382c68a85c6ca799fdceab1 to your computer and use it in GitHub Desktop.
Save msakamoto-sf/6c57b719b382c68a85c6ca799fdceab1 to your computer and use it in GitHub Desktop.
bashのヒアドキュメントでテキストファイルに保存
# ヒアドキュメントをテキストファイルに保存
cat << EOF > demo.txt
abc
def
EOF
# ヒアドキュメントは標準入力として扱われるので、こんなことも。
psql mydb << SQL
select * from xxxx
insert into xxxx values (1, 2, ...)
SQL
# 参考 : https://qiita.com/take4s5i/items/e207cee4fb04385a9952
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment