awk 添加自定义变量

  • 使用-v选项
    head -n 3 /etc/passwd | awk -v test="hello" -F: '{print test,$1}'
    加三个变量
awk -v a=${array[0]} -v b=${array[1]} -v c=${array[2]} '{if(($1==a)&&($4==b)&&($5==c))print}' ..
  • 在BEGIN{}模式自定义变量
    head -n 3 /etc/passwd | awk -F: 'BEGIN{test="hello"}{print test,$1}'

  • ?

pa=pa01t1
sample=pa01_tumor1
cat result_${pa}_quickmode/${sample}_R1_clean${sample}_R2_clean_HPV_HumanGene_Annotated_Cyto.txt | awk  '{print $2}' | less

可以识别该文件的第二列?

cat result_${pa}_quickmode/${sample}_R1_clean${sample}_R2_clean_HPV_HumanGene_Annotated_Cyto.txt | awk -v a=$sample -F: '{print a,$2}' | less

不识别第二列?
暂时解决,双重awk:

在文件末尾加一列一样的值,例如-/./*

awk '{print $0,"cwy"}' test1.txt > test2.txt
cut -f lastclonum  test2.txt #failed
sed -i 's/.*\s//g'   test2.txt # get the last colnum

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值