Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Search
Context Navigation
←
Previous Change
Wiki History
Next Change →
Changes between
Version 3
and
Version 4
of
linux
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
2016/12/02 11:54:35 (
8 years
ago)
Author:
yuna
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
linux
v3
v4
1
= sed
1
2
== リストをCSVに変換
2
3
…
…
10
11
# sed ':loop; N; $!b loop; ;s/\n/,/g' test.txt
11
12
aaa,bbb,ccc,ddd
13
}}}
14
15
== Windowsの開業コードCRを削除
16
17
{{{
18
$ sed -e /^M// -i test.txt
12
19
}}}
13
20