# Will create 4 files: (1) List of all faxes with columns for versions # (2) List of 3.1.x faxes (3) List of 3.2.x faxes (4) List of 4.1.x faxes # Created: 10/07/94 Cynthia Roush # Change History: # . /u/hsim/other/fax.data/scripts/setvars cd $TMPDIR sed "/^#/d" $FAXDB > tmp$$ sed "/^! limited-l/d" tmp$$ > tmp1$$ sed "/^! limited-4/d" tmp1$$ > tmp$$ cut -c$FN_COLS tmp$$ > fn$$ cut -c$V31_COLS tmp$$ > v31$$ cut -c$V32_COLS tmp$$ > v32$$ cut -c$V41_COLS tmp$$ > v41$$ # Create file (1) paste -d "\0" fn$$ v31$$ v32$$ v41$$ > file1$$ vi file1$$ rm *$$