我正在处理一个应该找到
等文件的bash脚本/var/www/templates/testdoctype/test_file.html.head
并返回类似
的内容cp -f '/var/www/sites/t/test/test_file.html' '/home/user/tmp/test_file.html'
到目前为止,我的脚本看起来像这样:
#!/bin/bash
DOCPATH='/var/www/templates/testdoctype'
INSTALL_PATH='/var/www/sites/t/test'
PKGBACKPATH='/home/user/tmp'
function find_suffix_head {
find "$FROM/$DOCTYPE" -type f -iname "*.head" -print \
| awk -v docpath="$DOCPATH" -v installpath="$INSTALL_PATH" -v pkgbackpath="$PKGBACKPATH" \
'{ sub( docpath, installpath ) sub(/.head$/, "") } { printf "cp -f ""'\''"$0"'\''"" " ; sub( installpath, pkgbackpath ) ; print "'\''"$0"'\''" }'
}
find_suffix_head
返回
cp -f '/var/www/templates/testdoctype/test_file.html' '/var/www/templates/testdoctype/test_file.html'
因此,sub(/.head$/, "")
可以正常工作,但sub( docpath, installpath )
和sub( installpath, pkgbackpath )
却没有。
答案 0 :(得分:2)
不需要awk,你可以用bash做到这一点:
function find_suffix_head {
find "$FROM/$DOCTYPE" -type f -name "*.head" | while read filename; do
filename=${filename%.head} # strip suffix
filename=${filename#/var/www/templates/testdoctype} # strip prefix
echo cp -f "$INSTALL_PATH/$filename" "$PKGBACKPATH/$filename"
done
}
从那里你也可以运行cp,而不是回应它。