あるファイルの行を取得し、別のファイルのすべての行を列ごとに減算したいと思います。
入力する: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
ええと、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
これは次のことを前提としています。
- 関連する行は
file2
常に最初の行です。 - 最初の行
file2
とすべての行file1
の列数が同じです。 - 列間に複数のスペースがある場合は、
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
仮説
- GNU DC
- 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"