Linux paste command - merge lines of files

Linux paste command: merge lines of files

Linux paste command Function Description

Use the paste command to write each line from each specified file to the standard output on the corresponding line, separated by tabs.

If no file is specified, or if the specified file is -, the program will read the data from the standard input.

Linux paste command Syntax

paste [option] [file]

The meaning of each option in the command is shown in the table.

Option Description
-d <List> Replace the tab separator with a character from the specified list
-s Instead of using parallel line output mode, each file occupies one line

Linux paste command Example

Merge the lines of the /root/ab and /root/ac files.

[root@rhel ~]# cat /root/ab
a
abc
[root@rhel ~]# cat /root/ac
a
abcd
[root@rhel ~]# paste /root/ab /root/ac
a      a
abc      abcd

Merge the lines of the apidemos.com.sort.txt and apidemos.com.txt files and use the @ character instead of the tab separator.

paste -d @ apidemos.com.sort.txt apidemos.com.txt

Output:

Linux paste command

Like(1)

Related

Linux Login Logout Command
Linux login commandLinux logout commandLinux nologin commandLinux exit commandLinux sulogin commandLinux rlogin commandLinux poweroff commandLinux ctrlaltdel CommandLinux shutdown commandLinux halt commandLinux reboot commandLinux init commandLinux runlevel commandLinux telinit command
Linux File Management Command
Linux cat commandLinux tac commandLinux nl commandLinux more commandLinux less commandLinux head commandLinux tail commandLinux rev commandLinux fold commandLinux fmt commandLinux expand commandLinux pr commandLinux sort commandLinux uniq commandLinux cut commandLinux comm commandLinux diff commandLinux join commandLinux diff3 commandLinux cmp commandLinux colrm commandLinux paste commandLinux mkdir commandLinux tr commandLinux split commandLinux csplit commandLinux tee commandLinux unexpand commandLinux patch commandLinux awk commandLinux sed commandLinux od commandLinux pwd commandLinux cd commandLinux ls commandLinux dir commandLinux dirs commandLinux touch commandLinux rmdir commandLinux cp commandLinux mv commandLinux rm commandLinux install commandLinux tmpwatch commandLinux file commandLinux du commandLinux wc commandLinux tree commandLinux cksum commandLinux md5sum commandLinux sum commandLinux dirname commandLinux mkfifo Command
Cron Expressions
Cron Expression to Run Every Day at 12 PMUnderstanding Vue Cron ExpressionsUnderstanding JS Cron ExpressionsA Comprehensive Guide to Cron Expressions for Scheduled TasksUnderstanding Linux Cron ExpressionsUnderstanding Quartz Cron ExpressionsCron ExpressionCron Time ExpressionCron Expression ParsingCron Expression: Executing a Task Every SecondCron Expression for Every Minute ExecutionCron Expression to Execute Every 10 MinutesCron Expression: Executing Every HourCron Expression to Execute Once a YearCron Expression: How to Schedule a Task to Run Daily at Midnight?