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
|