Search:

Type: Posts; User: Salem

Search: Search took 0.35 seconds.

  1. So perhaps foundString=$(./file3.o output.txt) ...

    So perhaps
    foundString=$(./file3.o output.txt)
    decodedString=$(./file2.o $foundString)
    ./file1.o $decodedString

    If you're using a shell other than bash, then replace $(command) with `command`...
  2. ./file4.o > output.txt //copies entire OUTPUT...

    ./file4.o > output.txt //copies entire OUTPUT block of text into file "output.txt"
    ./file3.o .. reads file "output.txt", and at end printf string
    ./file2.o .. reads file3.o OUTPUT (string), and...
Results 1 to 2 of 2