Search Results

Search: Posts Made By: prarat
1,441
Posted By bakunin
The format to send mails is a bit tricky. The...
The format to send mails is a bit tricky. The general invocation syntax is:

<process generating mail text> | mail -s "<Subject line>" <recipients address>">

So, for example, if you want to send...
1,441
Posted By yazu
awk ' /^$/ { t++; next } !t { print >...
awk ' /^$/ { t++; next }
!t { print > "file1" }
t { print > "file2" }
' INPUTFILE
3,833
Posted By Scott
Then, perhaps you should use paste...
Then, perhaps you should use paste (https://www.unix.com/man-page/OpenSolaris/1/paste/):

$ paste -d" " a.txt b.txt
A B C 1 2 3
D E F 4 5 6
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 03:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy