LoginSignup
0
1

More than 3 years have passed since last update.

ワンコマンドで複数行にわたるテキストファイルを作成する

Posted at

毎回忘れるのでメモ

cat <<-EOF > /tmp/hogehoge.json
{
   data: "hogehoge"
}
EOF

結果

[root@754ec3e9caec /]# ls -l /tmp/hogehoge.json
-rw-r--r-- 1 root root 24 Nov 29 09:19 /tmp/hogehoge.json
[root@754ec3e9caec /]# cat /tmp/hogehoge.json
{
   data: "hogehoge"
}

手順書作るときに便利
以上。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1