Combine sed commands into one command
I am currently doing these two commands
removes the first character of each line
sed -i 's/\(.\{1\}\)//'                                      
removes extra spaces in each line
sed -i 's/    / /g'                                                 
There are 3.4 BILLION lines in the 237GB file it is parsing, and i dont want it to need to run through twice.
 
     
     
    