Ubuntu Pastebin

Paste from Need Tabs at Thu, 11 May 2017 19:43:29 +0000

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