查詢導(dǎo)流日志中4716廣告位的dpl鏈接:grep -a '4716' 2020-06-22.0.log |grep 'openapp'
-a:因?yàn)閘og是二進(jìn)制的睡扬,所以需要轉(zhuǎn)成text的滚婉。
刪除dsp_posid_testlist_202007012125中包含2532的行
sed -i '/2532/d' dsp_posid_testlist_202007012125
打印第十列==1的行
awk -F"\t" '{if(0}}' AN_pos_tag_2_pos_info_conf
用815053-1替換815053
sed -i 's/815053/815053-1/g' AN_pos_tag_2_pos_info_conf
查出進(jìn)程id后,批量殺進(jìn)程
ps axu | grep main.py | awk '{print $2;}' | xargs kill -9
把標(biāo)準(zhǔn)錯(cuò)誤(2)輸出到標(biāo)準(zhǔn)輸出(1)中:
python main.py --port=80 >> run.log 2>&1
$?
最后運(yùn)行的命令的結(jié)束代碼(返回值)
sed '$a添加的內(nèi)容' file #這是在最后一行行后添加字符串
插入一列
sed -i "s/^/Chr${i}\t&/g" file
sed -i "s/^/111\t&/g" show_ratio_map
刪除列:
awk '{0}' file
grep -nr NEON .
查找當(dāng)前目錄下包含關(guān)鍵字“NEON”的所有文件,并列出行號(hào)。