Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 1
and
Version 2
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/05/31 12:50:36 (
8 years
ago)
Author:
yuna
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
linux
v1
v2
11
11
aaa,bbb,ccc,ddd
12
12
}}}
13
14
== 特定文字列が含まれる行を置換
15
16
17
{{{
18
# cat httpd.conf
19
...
20
ServerName localhost:80
21
...
22
23
# sed '/^ServerName /c ServerName 192.168.1.1:80'
24
...
25
ServerName 192.168.1.1:80
26
...
27
}}}