Redirect output from terminal


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Redirect output from terminal
# 1  
Old 05-12-2015
Redirect output from terminal

i make a shell script. There has a line wget
Code:
https://cisofy.com/files/lynis-2.1.0-88394c1affb9e23bd7390098947b3fd4b04e35e8.tar.gz

When this line execute terminal show some text like this
Code:
Resolving cisofy.com (cisofy.com)... 149.*.*.*
Connecting to cisofy.com (cisofy.com)|149.*.*.*|:4444... connected.
HTTP request sent, awaiting response... 200 OK
Length: 180493 (176K) [application/octet-stream]
Saving to: `lynis-2.1.0-88394c1affb9e23bd7390098947b3fd4b04e35e8.tar.gz.1'

100%[======================================>] 180,493     56.5K/s   in 3.1s    

2015-05-13 03:46:43 (56.5 KB/s) - `lynis-2.1.0-88394c1affb9e23bd7390098947b3fd4b04e35e8.tar.gz.1' saved [180493/180493]

I want that the terminal don't show any text when the line execute. I tried
Code:
https://cisofy.com/files/lynis-2.1.0-88394c1affb9e23bd7390098947b3fd4b04e35e8.tar.gz | &> /dev/null

but it not work.Smilie
Please help me Smilie
# 2  
Old 05-12-2015
From man wget:

Code:
       -q
       --quiet
           Turn off Wget's output.

# 3  
Old 05-12-2015
If the line execution line was
Code:
 mv /root/Desktop/lynis/plugins/* /etc/lynis/plugins/

then i stop showing output by
Code:
-q
       --quiet

same system ?
# 4  
Old 05-12-2015
There is not general rule-of-thumb in suppressing output many commands support a (-q or --quiet) option but many do not. check your on-line manual for the particular command and if no quiet option is available you may have to redirect standard out.

For example:

Code:
mv /root/Desktop/lynis/plugins/* /etc/lynis/plugins/ > /dev/null 2>&1

But think carefully what you want to happen in the case of an error (eg the plugins folder is empty, you run out of disk space, etc). If no one is around to see or act on the error perhaps it needs to be captured to a file and emailed to someone who can deal with it later on.
This User Gave Thanks to Chubler_XL For This Post:
# 5  
Old 05-13-2015
&> /dev/null in post#1 if fine; just remove the pipe in front.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Print Terminal Output Exactly how it Appears in the Terminal to a New Text File

Hello All, I have a text file containing output from a command that contains lots of escape/control characters that when viewed using vi or view, looks like jibberish. But when viewed using the cat command the output is formatted properly. Is there any way to take the output from the cat... (7 Replies)
Discussion started by: mrm5102
7 Replies

2. Shell Programming and Scripting

Redirect script output to a file and mail the output

Hi Guys, I want to redirect the output of 3 scripts to a file and then mail the output of those three scripts. I used below but it is not working: OFILE=/home/home1/report1 echo "report1 details" > $OFILE =/home/home1/1.sh > $OFILE echo... (7 Replies)
Discussion started by: Vivekit82
7 Replies

3. Shell Programming and Scripting

script to mail monitoring output if required or redirect output to log file

Below script perfectly works, giving below mail output. BUT, I want to make the script mail only if there are any D-Defined/T-Transition/B-Broken State WPARs and also to copy the output generated during monitoring to a temporary log file, which gets cleaned up every week. Need suggestions. ... (4 Replies)
Discussion started by: aix_admin_007
4 Replies

4. Shell Programming and Scripting

how to Redirect the output of telnet command on a terminal to a file ?

(/home/user1)-> more script.sh #!/bin/ksh ( echo open devicename sleep 3; echo user; sleep 2; echo password; sleep 2; echo "/info/dump"; ---------> This needs to redirect to a file .Can be number of pages sleep 2; echo "exit" ) | telnet Please use code tags next time for... (2 Replies)
Discussion started by: necro98
2 Replies

5. Shell Programming and Scripting

output redirect

Hi i am compiling a source code by make command. i want to redirect the output of make to a file but at the same time i want to see the output in terminal. how to do this ?. please suggest your idea. thanks in advance. Saravana ---------- Post updated at 05:24 PM ----------... (2 Replies)
Discussion started by: tsaravanan
2 Replies

6. Shell Programming and Scripting

Redirect Output

Hi, I would like to list files: ls *.hdf But I would like a copy of the output directed to the screen, but also APPENDED to a text file: test.txt I have tried: ls *.hdf | tee test.txt However, that will just write over everything already existing in test.txt. How can I append the... (1 Reply)
Discussion started by: msb65
1 Replies

7. Shell Programming and Scripting

Redirect output

Hi all, I have a script which call a java program, the logging (to log file) in the program is done using log4j. However, as a safety measure, i still choose to direct standard error to another log file as follow /usr/bin/java -classpath ${classpath} -Xmx128m TestingProgram 2>>... (1 Reply)
Discussion started by: mpang_
1 Replies

8. Solaris

how to redirect my output in a new terminal

Hi all, i type a command along with dtterm what i would like to have is that the output of the command to be shown in the new terminal . Any Idea on how to acheive this? (0 Replies)
Discussion started by: Sayantan
0 Replies

9. UNIX for Dummies Questions & Answers

Redirect Output In Variable

how make assign the output of the command (for example: grep "file" "string" ) in a variable ($name)? i thing how put the result of the command (grep , cut, find ecc) in a variable.. IT's Possible ?? (1 Reply)
Discussion started by: ZINGARO
1 Replies

10. Shell Programming and Scripting

redirect output to file?

Hi: I am currently working on a program which requires direct its ouput to a file here is an example ./proram arg_1 arg_2 when program ends all output will be arg_2 file Is that possible I am not a bad programmer, However I am stuck there. Can anyone give a hint? Thanks SW (1 Reply)
Discussion started by: slackware
1 Replies
Login or Register to Ask a Question