Simplest way to format with If on stout?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Simplest way to format with If on stout?
# 8  
Old 09-15-2011
Feed it in with -v like shown above.

Code:
awk -v VARNAME="${SHELLVAR}" ...

# 9  
Old 09-16-2011
Quote:
Originally Posted by Corona688
If your system has an awk that bad, it probably has a nawk you should be using instead...
Smilie Understood... but again... I am forced to stand behind the statement I made earlier. You use what you must use. But you are right in that the majority case, your soln will work... mine works with that and everywhere else (just saying....).
# 10  
Old 09-16-2011
The problem is that '{ VAR='"$var"' and -v VAR="$VAR" really aren't equivalent. It's not a matter of taste.

Imagine what would happen if $var was set to "\"; system(\"rm -Rf ~/*\");" -- awk would evaluate that.

A rather extreme example admittedly. More likely unintentional problems would involve syntax errors caused by quote characters, and so forth.
# 11  
Old 09-19-2011
I like you... so what you are saying it's best to use -v when it's not available for use. Granted, a person can jump off of a cliff if they want... not really trying to suggest that somebody would do that. I mean, using your logic, why type awk at all... just type rm -rf *... right? Just saying.... can we end this? I think I said VERY clearly that I understand your point. And I was just pointing out that -v isn't going to work for every awk implementation out there... right? Is there REALLY something more to add?? I even said use -v if it's available, right? Is there a reason why that wasn't good enough for you? Do you want me to lie? Should I say, "gee, you're right, you HAVE to use -v... even when it's not available?"

Let's close this thread please... I've had enough... haven't you?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Simplest way to access Linux system mail from email client

I'm not a Linux newbie but this seemed like a pretty n00b question. I am familiar with Postfix/Dovecot setups but now I am looking for the simplest way to access mail on a Linux system, such as the mail that goes to /var/mail/root. I know I can edit /etc/aliases and have the system mail go straight... (6 Replies)
Discussion started by: TayKimchi
6 Replies

2. Shell Programming and Scripting

Need script for transferring bulk files from one format to text format

"Help Me" Need script for transferring bulk files from one format to text format in a unix server. Please suggest (2 Replies)
Discussion started by: Kranthi Kumar
2 Replies

3. Programming

The simplest network driver

Hi, I am trying to write the simplest network driver that would send whatever through cable. My configuration is: Linux machine with some Intel network adapter Another machine with WireShark I connected Intel network adapter to second machine and want anything to pop up at wireshark. ... (12 Replies)
Discussion started by: Chrisdot
12 Replies

4. UNIX for Dummies Questions & Answers

Should be the simplest thing in the world grep

should be the simplest thing in the world use grep but i not get it i have several files, in this files i need to khow how many times the words are repeated but the files must star whit P_ this work egrep -c "word1|word2" *P_* result: P_11351814:1 P_11351823:3 P_11351826:1... (2 Replies)
Discussion started by: SirGrifo
2 Replies

5. Shell Programming and Scripting

Converting windows format file to unix format using script

Hi, I am having couple of files which i used to copy from windows to Linux, so now in case of text files (CTRL^M) appears at end of line. I know i can convert this windows format file to unix format file by running dos2unix. My requirement here is that i want to do it automatically using a... (5 Replies)
Discussion started by: sarbjit
5 Replies

6. Shell Programming and Scripting

stout, stderr to syslog via function with if statement

I have a function called sysLogger in a bash script that I am using to redirect stdout and stderr to syslog. Part of the script contains an option to turn on debugging otherwise I want debugging output to go to /dev/null. I am struggling to understand how to make this work using the function... (10 Replies)
Discussion started by: jelloir
10 Replies

7. Shell Programming and Scripting

Retaining the Unix CSV format in Excel format while exporting

Hi All, I have created a Unix Shell script whch creates a *.csv file and export it to Excel. The problem i am facing is that Users wants one of the AMOUNT field in comma separted values. Example : if the Amount has the value as 3000000 User wants to be in 3,000,000 format. This Amount format... (2 Replies)
Discussion started by: rawat_me01
2 Replies

8. UNIX for Dummies Questions & Answers

How can I find files by date or size from stout?

Hello all I wander if I make for example " ls -l " And it gives me all the files in the directory with the additional info like data size and privileges But what if I like to filter the stout result for example by date When I try to do: echo "`ls -l`" | grep "Jan 12" it gives me the... (2 Replies)
Discussion started by: umen
2 Replies

9. UNIX for Dummies Questions & Answers

I'm incapable of the simplest thing

Okay, stupid question How can I use ed, exactly? I need just a quick tutorial, thanks. Cheers! Tavy (2 Replies)
Discussion started by: Tavy
2 Replies

10. UNIX for Dummies Questions & Answers

the simplest question in the WORLD

how do i get unix on my windows 95 computer? (3 Replies)
Discussion started by: killfry
3 Replies
Login or Register to Ask a Question