Created
March 24, 2018 06:18
-
-
Save msakamoto-sf/6c57b719b382c68a85c6ca799fdceab1 to your computer and use it in GitHub Desktop.
bashのヒアドキュメントでテキストファイルに保存
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
# ヒアドキュメントをテキストファイルに保存 | |
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