0

まさにタイトル通り、

domain='foo.com'

find . -iregex '.*\(html\|htm\)' -printf '%f\0' | \
xargs -0 sed -Ee "s:(http|https)\://(www.|)${domain}::g" 

# sed: can't read index.html: No such file or directory

私は期待している

directory/directory/index.html

検索で何が起こっているのかわからない?

4

2 に答える 2

1

マニュアルページには次のように書かれています:

%f     File's name with any leading  directories  removed  (only
       the last element).
于 2013-11-14T00:19:05.633 に答える