Shell merge two files into one file two columns published: 2014-07-20 Editor: Www.jquerycn.cnShell merges two files into one file in two columns, providing two methods, generic shell script, awk script.
The contents of the file are as follows:
More Eng.txt Chi.txt
::::::::::::::
Eng.txt
::::::::::::::
Semicolon
Comma
Delimiter
Spacebar
Hyphen
Single quote
Double quote
::::::::::::::
Chi.txt
::::::::::::::
Semicolon
Comma
Delimiter
Space key
Hyphenation Symbols
Single quotation marks
Double quotes
Method 1, paste-d "\ t" Eng.txt chi.txt
Semicolon semicolon
Comma comma
Delimiter delimiter
SPACEBAR Space key
Hyphen hyphenation Symbol
Single quote quotation marks
Double quote quotation marks
Method 2, or use awk to process
awk ' Nr==fnr{a[i]=$0;i++}nr>fnr{print a[j] "" $0;j++} ' eng.txt chi.txt
Semicolon semicolon
Comma comma
Delimiter delimiter
SPACEBAR Space key
Hyphen hyphenation Symbol
Single quote quotation marks
Double quote quotation marks
Hash well number
Shell merges two files into two columns of one file