LoginSignup
0
1

More than 5 years have passed since last update.

linuxのファイルの改行変換(削除)メモ

Posted at

よくあるSQLファイル(改行 LF)

select.sql
select * from uesr where user_id in (
1,
2,
3,
);

Where文の最後の「,」を消したい時に、sedでうまくできなかったので、Perlを使いました。

cat select.sql | perl -0pe 's/,\n\);/\n);/g' > select_nocomma.sql
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