将一个文件中的一行减去另一个文件中的所有行

将一个文件中的一行减去另一个文件中的所有行

我想将一个文件中的一行逐列减去另一个文件中的所有行。

输入:file1

1 1 1 1
3 1 5 1
1 5 8 2

输入:file2

1 1 1 1

期望的输出:file3

0 0 0 0
2 0 4 0
0 4 7 1

awk、sed?

答案1

awk

awk 'NR==1   { for(i=1; i<=NF; i++) a[i] = $i }
     FNR!=NR { for(i=1; i <NF; i++) $i -= a[i]; print }' file2 file1

这假设:

  1. 中的相关行file2始终是第一行
  2. 第一行file2和所有行file1具有相同的列数
  3. 如果列之间有多个空格,file1您不关心保留它们。

答案2

tr ' -' ' _' < file1 |          # dashes -> underscores per dc requirements
dc -e "
[q]sq                           # macro for quitting
[z :x     z0<a]sa               # macro for main stack -> array x[]
[z ;x -SM z0<b]sb               # macro for doing: stack M = stack[i]-x[i]
[LMdn32an zlk>c]sc              # macro for printing stack M elements
[?z0=q lbx lcx 10Pc z0=?]s?     # do-while loop to read in file1 per line and run the macros "b" then "c"
$(< file2 tr ' -' ' _')         # load up the main stack with file2
zsk lax l?x                     # store cols in reg. k, call macro "a" and
" > file3

结果

0 0 0 0
2 0 4 0
0 4 7 1

假设

  1. GNU 直流
  2. file1 和 file2 中的列数量相同,但它们应该相同。

答案3

纯 bash 解决方案。

用法: ./subtracting.sh file1 file2

#!/bin/bash

read -ra subtrahend < "$2"

while read -ra minuend; do
    for i in "${!minuend[@]}"; do
        echo -n $((minuend[$i] - subtrahend[$i]))
    done
    echo
done < "$1"

相关内容