Thread: DR800 view command output
View Single Post
Old 03-24-2010, 04:08 AM   #6
Iņigo
Guru
Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.
 
Posts: 730
Karma: 72743
Join Date: Feb 2008
Location: Here or there
Device: iRex iLiad, iRex DR800S. K4NT. Kobo Aura, Aura One, Libra 2.
Quote:
Originally Posted by 34973 View Post
Can you please give me example how can i use redirection?
Look at the first message in this thread:
Code:
ls -al / > /media/mmcblk0p1/System/.test/output.txt
See the > char here? that redirects previous command (ls, list files, similar to dir command on MSDOS) output to a file.

Another example could be:
Code:
ls -al / > /media/mmcblk0p1/System/.test/output.txt 2>&1
that redirects both standard output and standard error to the file.

But note that if the destination file is inside a hidden directory (one that starts with a dot, as .test) you won't be able to navigate into it with the DR800, as the device don't show those folders.
Read the second message for other alternatives.
Iņigo is offline   Reply With Quote