01.
$ sed -i
"s/http:\/\/yyy.xxx.edu.cn//g"
$(grep -lr
"http://yyy.xxx.edu.cn"
*)
02.
$ cat target.txt
03.
<a
class
=
"navbar-brand"
href=
"/"
>Panda Search</a>
04.
text-decoration: none;
" href="
http:
05.
" href="
http:
06.
07.
<a
class
=
"navbar-brand"
href=
"/"
>Panda Search</a>
08.
09.
href=
"http://www.asdf.net/scholar/Gong-Qing_Wu.html"
>
10.
11.
href=
"http://asdf.net/scholar/Federico_Bocardi.html"
>Federico occardi</a></li><span
class
=
"Apple-converted-space"
> </span><li style=
"display: inline-block; padding-right: 5px; padding-left: 5px;"
><a style="color: rgb(
66
,
139
12.
$ sed -i
"s/http:\/\/www.asdf.net//g"
$(grep -lr
"http://www.asdf.net"
*)
13.
$ sed -i
"s/http:\/\/asdf.net//g"
$(grep -lr
"http://asdf.net"
*)
14.
$ cat target.txt
15.
<a
class
=
"navbar-brand"
href=
"/"
>Panda Search</a>
16.
text-decoration: none;
" href="
/scholar/xindong_wu.html">Xindong
17.
" href="
/scholar/Federi
18.
19.
<a
class
=
"navbar-brand"
href=
"/"
>Panda Search</a>
20.
21.
href=
"/scholar/Gong-Qing_Wu.html"
>
22.
23.
href=
"/scholar/Federico_Bocardi.html"
>Federico occardi</a></li><span
class
=
"Apple-converted-space"
> </span><li style=
"display: inline-block; padding-right: 5px; padding-left: 5px;"
><a style="color: rgb(
66
,
139
24.
$