Skip to content

paste | Cheatsheet

merge lines of files


paste 1 2 | pr -t -e120                                                    
paste -d '\n' 1 2 | xargs -d '\n' printf '%-50s  %-50s\n'             
paste <(printf %s "$varA") <(printf %s "$varB")
paste -d' ' <(cut -f1 1) <(cut -d' ' -f2 2) |column -t