If I use a command like this one: ./program >> a.txt & , and the program is a long running one then I can only see the output once the program ended. That means I ha
If the program writes to a file, you can read it while it is being written using tail -f a.txt.
tail -f a.txt