Skip to content

Instantly share code, notes, and snippets.

@tshev
Created May 3, 2014 11:26
Show Gist options
  • Save tshev/8b2dd8c59fe8906ed9ad to your computer and use it in GitHub Desktop.
Save tshev/8b2dd8c59fe8906ed9ad to your computer and use it in GitHub Desktop.
#!/usr/bin/bash
file=`uuidgen`
cat "file" | while read v
do
read x;
if [ $x ]
then
echo $x >> $file
fi
echo $v >> $file
done;
mv $file "file"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment