ssed.py -gHello -syou/me -gHolla infileis the same as
ssed.py -gHello infile | ssed.py -syou/me | ssed.py -gHollai.e. the modifications and selections are performed sequentially on a per-line basis
ssed.py <options1> file1 <options2> file2 file3 <options3>should print the same result as
cat file1 file2 file3 | ssed.py <options1>| ssed.py <options2>| ssed.py <options3>i.e. order of files is significant, order of options is significant, but how files and options are intermingeled is not.