Guest User

Untitled

a guest
Feb 21st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.13 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. cat $filename |
  4. while read line
  5. do
  6.  newline="$(echo $line | sed 's/\n\t/ /g')"
  7.  echo $newline >> $outputfile
  8. done
Add Comment
Please, Sign In to add comment