- Jan
- 38
- 0
For newbies, are there instructions for writing tpipe commands? There is a long list of parameters but I can find no examples how to write the commands. For example, how do I make it sort lines of a text file, assuming that it can do that?
By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!pdf2txt=tpipe /input=%1 /simple=76
RemoveBlanksFromStartOfLine=tpipe /simple=12
RemoveHTML=tpipe /simple=16
RemoveMultipleWhiteSpace=tpipe /simple=19
R:\>type test.txt
one
two
three
four
five
six
seven
eight
nine
ten
R:\>type test.txt | tpipe /sort=2,0,0,1,40
eight
five
four
nine
one
seven
six
ten
three
two
alias mysort=tpipe /sort=2,0,0,1,40
R:\>type test.txt | mysort
eight
five
four
nine
one
seven
six
ten
three
two
R:\>tpipe /input=test.txt /sort=2,0,0,1,40
eight
five
four
nine
one
seven
six
ten
three
two