Append && echo "success" to all commands


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Append && echo "success" to all commands
# 1  
Old 01-28-2010
Append && echo "success" to all commands

I am learning to build from SVN and other tools, with a lot of copying and pasting from forums. I like to append && echo "success" to all commands so that I can see at a glance if things went all right. Is there a way that I can have the bash shell append this to all commands?

Thanks!
# 2  
Old 01-28-2010
that would be naff and possibly dangerous
what if you had the following?

Code:
cat file |
sort |
uniq -c|
head


you could set -o errexit and it would exit at the first error.
or
Code:
trap "echo ERROR:" ERR

# 3  
Old 01-28-2010
Thanks, I learned a new word!

I do not understand what would be dangerous, but I take your word for it. I will google on the terms that you mention and hopefully that will teach me enough to understand.

Thanks.
# 4  
Old 01-28-2010
naff?
sorry, british slang!

well, yes, as a professional korn shell scripter of old it would be very bad style
to do what you describe.

if one of my trainees did that I'd make them stand out in the playground!
;-)
# 5  
Old 01-28-2010
That's all right, the British are second only to the French in language pride! Spread your slang far! (Actually my nation was once a British colony, but these days it's mostly American slang spoken here)

I spent almost an hour with the daughter in the playground yesterday, so I have paid my dues! Tell me, is it also dangerous to append the lines myself, or just to have the shell do it for me automatically? I still cannot find any good info, so if you could RTFM me with a link, I would very much appreciate it.

Thanks!
# 6  
Old 01-28-2010
no I just think it's an ugly way to do it.
it's a personal style thing.
it's better to flag an error than success.

i would use set -o errexit or trap ERR.
the usual unix way is to succeed quietly, but fail noisily.

what if the script already has an &&?
but if you really must
this will do it and give you a .bak backup

Code:
perl -pi.bak -e 's/$/ \&\& echo success'  your_file ...

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

find files in sub dir with tag & add "." at the beginning [tag -f "Note" . | xargs -0 {} mv {} .{}]

I am trying find files in sub dir with certain tags using tag command, and add the period to the beginning. I can't use chflags hidden {} cause it doesn't add period to the beginning of the string for web purpose. So far with my knowledge, I only know mdfind or tag can be used to search files with... (6 Replies)
Discussion started by: Nexeu
6 Replies

2. UNIX for Beginners Questions & Answers

Echo "abc" | sed - r 's/a/&_&/

I want to know the working of & here step by step using sed command. (1 Reply)
Discussion started by: Preeti07
1 Replies

3. Web Development

How would I mod_rewrite "/~a1Pha" and "/=a1Pha" to "/paste/a1Pha.htm"? (internally & externally)

Basically I want to shorten URLs on my html pasting site (pasteht.ml), by using "/~a1Pha" instead of "/paste/a1Pha". The ID is 5 numbers and letters, both cases. For example: /~idnum serves /paste/idnum.htm /=idnum serves /paste/idnum.htm /paste/idnum redirects to /~idnum (to update any old... (0 Replies)
Discussion started by: phillips1012
0 Replies

4. Shell Programming and Scripting

finding the strings beween 2 characters "/" & "/" in .txt file

Hi all. I have a .txt file that I need to sort it My file is like: 1- 88 chain0 MASTER (FF-TE) FFFF 1962510 /TCK T FD2TQHVTT1 /jtagc/jtag_instreg/updateinstr_reg_1 dff1 (TI,SO) 2- ... (10 Replies)
Discussion started by: Behrouzx77
10 Replies

5. Shell Programming and Scripting

Replace dashes positions 351-357 & 024-043 with 0 & replace " " if exis with 04 at position 381-382

I need to replace dashes (i.e. -) if present from positions 351-357 with zero (i.e. 0), I also need to replace dash (i.e “-“) if present between position 024-043 with zero (i.e. 0) & I replace " " (i.e. 2 space characters) if present at position 381-382 with "04". Total length of record is 413.... (11 Replies)
Discussion started by: lancesunny
11 Replies

6. Red Hat

files having Script which works behind "who" & "w" commands

Dear All, plz print the path of files which have the script of "who" & "w" commands. thnx in advance. (6 Replies)
Discussion started by: saqlain.bashir
6 Replies

7. Shell Programming and Scripting

What does this really mean? "tty -s && stty istrip"

I am having hard time understanding what this really do to the environment? I do understand this part "tty -s && stty " but not "istrip" # stty command is executed only if a tty is attached to the process. # stty istrip : Strip input characters to 7 bits tty -s && stty istrip I am... (3 Replies)
Discussion started by: kchinnam
3 Replies

8. Shell Programming and Scripting

"sed" to check file size & echo " " to destination file

Hi, I've modified the syslogd source to include a thread that will keep track of a timer(or a timer thread). My intention is to check the file size of /var/log/messages in every one minute & if the size is more than 128KB, do a echo " " > /var/log/messages, so that the file size will be set... (7 Replies)
Discussion started by: jockey007
7 Replies

9. What is on Your Mind?

[[ $(date +%Y) == 2007 ]] && echo "Happy New Year"

Same as the Title! :) (2 Replies)
Discussion started by: ripat
2 Replies

10. UNIX for Dummies Questions & Answers

"nohup" and "&" commands

Why would anyone ever type in a command like this: nohup command & nohup lets you logout of your telnet session so why add "&" to run it in the background? (1 Reply)
Discussion started by: xadamz23
1 Replies
Login or Register to Ask a Question