'2025/04/16'에 해당되는 글 1건

  1. 2025.04.16 bash insert single quote

$ cat 1.txt
aa
bb

sed -i "s/^/'/; s/$/',/" 1.txt

$ cat 1.txt
'aa',
'bb',