Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2つのファイルをフェッチし、いくつかのフォーマットを実行して結果を出力するこのコマンドがあります。
curl https://www.cloudflare.com/ips-v{4,6} | sed 's/^/set_real_ip_from /;s/$/\;/' \ > /home/user/output.txt
それは問題なく動作します。問題は、ファイル1とファイル2の間に改行を追加するにはどうすればよいですか(フォーマットの変更を保持する)?
このような :
{ curl -s https://www.cloudflare.com/ips-v4 printf '\n\n' curl -s https://www.cloudflare.com/ips-v6 } | sed -r 's/^(.+)$/set_real_ip_from \1;/g' > /home/user/output.txt