Changes between Initial Version and Version 1 of linux


Ignore:
Timestamp:
2014/09/19 17:17:10 (10 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux

    v1 v1  
     1== リストをCSVに変換 
     2 
     3{{{ 
     4# cat test.txt 
     5aaa 
     6bbb 
     7ccc 
     8ddd 
     9 
     10# sed ':loop; N; $!b loop; ;s/\n/,/g' test.txt 
     11aaa,bbb,ccc,ddd 
     12}}}