![]() |
Shell Script redirection tip
Hi,
Note: this tip is about redirecting output to a file and the screen at the same time. The original 'hack' has been replaced by a much better solution. See the second post! I'm leaving my 'hack' as an odd example of the many ways problems can be solved. I justed wanted to share this neat 'hack' I figured out: To redirect output to a file, but still see it on screen at the same time, use this construct: Code:
#!/bin/bash You want to see the output of a command, but you also want to keep it as reference. The code below would do this as well, but if the 'command' took a long time you'd be staring at an empty line during execution. Code:
# this works but is not usable for commands I'm planning on writing a mother-script around 'emerge' that appears the same as the regular 'emerge' (with it's screen output), but also keeps rotating logs of the results. This construction lets me do that. NOTES: - I couldn't find an "output splitter" that redirects output to two places (ie screen and file) or that would've been better. - Over slow network connections Tail seriously lags behind the actual running of the script, and is very 'jumpy' in its output. - The above code is not executable, as I'm not presenting a specific situation in it. Simple examples could be easily made however. - I hope this tip helps someone and/or interests them in scripting for themselves! |
Quote:
Was doing some digging around on this, and foudn (but haven't tested) a command called tee. 'man tee' says: Quote:
|
Thanks, I'll have a look-see!
Edited the spelling of the subject line too, too bad it doesn't update the Board thread listing :( EDIT: yes, `tee` works fine! Thanks a lot , it works a lot better than my 'ugly' solution... In case anyone is interested: this is the script I tested it with: replace "some_long_command" by a command that takes a long time to execute and produces output during execution. (I used un-tar on a large file) Code:
#!/bin/bash |
All times are GMT -8. The time now is 09:52 PM. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project