Results 1 to 10 of 14

Thread: Can't run libcod

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #11
    Assadministrator kung foo man's Avatar
    Join Date
    Jun 2012
    Location
    trailerpark
    Posts
    2,011
    Thanks
    2,102
    Thanked 1,084 Times in 753 Posts
    When the history buffer in normal Terminal is not big enough, just install GNU/Screen "screen":
    Code:
    apt-get install screen
    With default history size it's possible to scroll all the way up (here at least ^^).

    Hm, then the error output of the subprocesses isn't redirected. This should work:

    Code:
    ./doit.sh base > test.txt 2>&1
    Code:
    ./doit.sh base 2>&1 | tee > test.txt
    timescale 0.01

  2. The Following User Says Thank You to kung foo man For This Useful Post:

    PureTryOut (22nd April 2014)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •