I have written a command line tool that takes input from STDIN, does stuff with it, and outputs it to STDOUT. It is run from the shell like:
$ mytool < inputfile.txt > outputfile.txt
Is there a way to run it like that in Xcode / instruments? The tool ussually works fine but with some input will crash with a segmentation fault.
$ mytool < inputfile.txt > outputfile.txt
Is there a way to run it like that in Xcode / instruments? The tool ussually works fine but with some input will crash with a segmentation fault.