我有一個 bash 腳本,它將從檔案中刪除所有非 Ascii 字元。但我想刪除所有列中非 Ascii 字元後面的字串。下面是腳本,
> #!/bin/bash
SCRIPT_PATH=/trmout/TRMOUTPUT_PROD
BKP_PATH=/appinfprd/bi/infogix/Temp_Files/SUPPLY_CHAIN
File_Name=WB
########################################################################
##Deleting the precessed files ####
########################################################################
cd $BKP_PATH
rm *.*
#########################################################################
### removing the non ascii char from all Supply chain files #######
#########################################################################
for i in $SCRIPT_PATH/$File_Name*.txt
do
cp $i $BKP_PATH
##########################################################################
##Replacing the NON ASCII Char from Supply Chain files and saving it.####
##########################################################################
cat $i >> $i.bkp
sed -i 's/[\d128-\d255]//g' $i.bkp
mv $i.bkp $i
done
#############################################################################################
##Creating a sample file which will be having the file name which has NON ASCII Char in it.##
#############################################################################################
cd $SCRIPT_PATH
grep -vlP '^[\0-\x7f]*$' WB*.txt >Supply_chain_Non_Ascii_List_File.txt
~
~
答案1
您的意思是要刪除該行中第一個非 ASCII 字元之後的任何內容嗎?如果沒有,請提供一些例子。
如果是,你的 sed 應該是:
sed -i 's/[\d128-\d255].*$//' $i.bkp
這將替換第一個非 ASCII 字元以及該行的其餘部分。