WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: [SOLVED] Help compiling perl modules  (Read 1918 times)

Offline b1ackmai1er

  • Jr. Member
  • **
  • Posts: 95
[SOLVED] Help compiling perl modules
« on: November 13, 2011, 10:29:17 PM »
Hi,

I am trying to compile some perl modules. When I start the compile process there is a lot of output to the display.

I tried to capture the output so I can check for errors in the compile process but even when I use the command ./buildme.sh > errorlog.txt not all of the output goes into the errorlog.txt file. The screen fills up with warning information.

Would someone tell me how I could catch this screen output as it exceeds the scroll back buffer on my terminal.


Thanks.
« Last Edit: November 14, 2011, 12:49:53 AM by b1ackmai1er »

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: Help compiling perl modules
« Reply #1 on: November 13, 2011, 10:41:41 PM »
./buildme.sh > errorlog.txt 2>&1

Offline b1ackmai1er

  • Jr. Member
  • **
  • Posts: 95
Re: Help compiling perl modules
« Reply #2 on: November 14, 2011, 12:48:11 AM »

Class:Wizard Thanks!