Ubuntu Pastebin

Paste from Mike Rushton at Thu, 11 May 2017 19:48:43 +0000

Download as text
1
2
3
4
5
echo -en $(grep -P '^(?!\s*$)[0-9\s]{8}' clip.txt)\t >> info.txt
echo -en $(grep -P -A1 '^Account Name' clip.txt | grep -v "Account Name")\t >> info.txt
echo -en $(grep -A1 "Project Manager" clip.txt | grep -v "Project Manager")\t >> info.txt
echo -en $(grep -A1 "PS Project" clip.txt | grep -v "PS Project")\t >> info.txt
echo -en $(grep -A1 "Tracking Number" clip.txt | grep -v "Tracking Number")\t >> info.txt
Download as text