複数の列を結合し、その間に情報を挿入します。

複数の列を結合し、その間に情報を挿入します。

3つのファイルがあり、すべて情報列が含まれています。

ID.ファイル

1
2
3

名前、ファイル

Josh
Kate
Chris

城、ファイル

Smith
Jones
Black

私は次のようなものを得るためにそれらを何とか組み合わせたいと思います:

The ID of the Josh Smith is 1
The ID of the Kate Jones is 2
The ID of the Chris Black is 3

今まで貼り付けを使って組み合わせてみましたが、うまくいきますが、paste -d ',' id.file name.file lastname.file始めと値の間に単語を追加したいと思います。

答え1

一方通行:

paste name.file lastname.file id.file | awk -F '\t' '{printf "The ID of the %s %s is %d\n", $1,$2,$3}'

awk必要な形式を取得するために使用されます。

答え2

別の考えられる解決策は次のとおりです(各ファイルに常に単一の列があると仮定)。

paste name.file lastname.file id.file |xargs printf 'the id of the %s %s is %d\n'

またはawk熱制限なしで:

awk '{ getline name<"name.file"; getline lastname<"lastname.file"}
     { print "the Id of the", name, lastname, "is", $0 }' OFS=' ' id.file

答え3

アイコンライブラリのプログラムの使用(SNOBOLセマンティクスのシンボル操作言語):

# Utility functions: print-as-echo, print-line-with-visual-space.
pe() { for _i;do printf "%s" "$_i";done; printf "\n"; }
pl() { pe;pe "-----" ;pe "$*"; }

pl " Input data files" data?
head data?

pl " Expected output:"
head -v $E

# Insert strings like:
# The ID of the Josh Smith is 1
pl " Results:"
icon-paste "-The ID of the " data2 "- " data3 "- is " data1 |
tee f1

pl " Verify results if possible:"
C=$HOME/bin/pass-fail
[ -f $C ] && $C f1 "$E" || ( pe; pe " Results cannot be verified." ) >&2

生産:

-----
 Input data files data1 data2 data3
==> data1 <==
1
2
3

==> data2 <==
Josh
Kate
Chris

==> data3 <==
Smith
Jones
Black

-----
 Expected output:
==> expected-output <==
The ID of the Josh Smith is 1
The ID of the Kate Jones is 2
The ID of the Chris Black is 3

-----
 Results:
The ID of the Josh Smith is 1
The ID of the Kate Jones is 2
The ID of the Chris Black is 3

-----
 Verify results if possible:

-----
 Comparison of 3 created lines with 3 lines of desired results:
 Succeeded -- files (computed) f1 and (standard) expected-output have same content.

これは次のシステムにあります。

OS, ker|rel, machine: Linux, 3.16.0-7-amd64, x86_64
Distribution        : Debian 8.11 (jessie) 

アイコンの貼り付けに関する詳細(lam.icn):

icon-paste      paste, join, laminate lines from files. (man)
Path    : ~/executable/icon-paste
Version : - ( local: ~/executable/icon-paste, 2012-02-11 )
Length  : 24 lines
Type    : POSIX shell script executable (binary data)
Shebang : #!/bin/sh
Home    : https://www2.cs.arizona.edu/icon/library/src/progs/lam.icn (doc)

アイコンに関する情報は以下から確認できます。

https://www2.cs.arizona.edu/icon/

頑張って...乾杯、drl

関連情報