按行拼接兩個檔案
awk 'NR==FNR{a[NR]=$0;next}{print $0,a[FNR]}' B.txt A.txt >C.txt
注:檔案格式須為unix,dos格式拼接後會跨行
在指定格式的檔案中查詢字串
在指定格式的檔案中查詢字串
grep -nr "string" --include=*.{c,cpp,h}
在排除指定格式的檔案中查詢字串
grep -nr "string" --exclude=*.{c,cpp,h}
路徑轉義
WORKSPACE=`pwd`
WORKSPACE=$(echo ${WORKSPACE//\//\\/})