Skip to content

Instantly share code, notes, and snippets.

@angch
Created August 26, 2014 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angch/c11f28cb24ff4726ceeb to your computer and use it in GitHub Desktop.
Save angch/c11f28cb24ff4726ceeb to your computer and use it in GitHub Desktop.
#!/bin/bash
# https://forum.lowyat.net/topic/3331860/+0
# Hope you don't have files begining with ___
# Usage ./pivot.sh inputfile.txt
rm -f ___*
split $1 -l1 ___
sed -i -r -e's/(..)../\1\n/g' ___*
paste ___* | tr -d '\n' | sed -r -e's/[\t \.]+/ /g'
rm -f ___*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment