Help for this page

Select Code to Download


  1. or download this
    open all input files, making array of file descriptors
    open output file for writing
    ...
        write to output file
      write newline to output file
    close all files
    
  2. or download this
    #!/bin/sh
    # args: $1 - directory holding input files
    ...
    done
    paste /tmp/columns/* >$3
    rm /tmp/columns/*