help with a ksh script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting help with a ksh script
# 22  
Old 05-07-2007
Quote:
Originally Posted by csnewbie84
Alrighty...here's what I got (with your help...hopefully I did this right...just learning this stuff 2 weeks ago)

Code:
#!/bin/ksh
pattern1=$1
pattern2=$2

if [ $# -ne 2 ]
then
print "Usage: $0 $pattern1 $pattern2"
exit
fi

for file in *
do
cp $3 /tmp/$3
sed -e 's/$pattern1/$pattern2/g'/tmp/$3 > $3
done

Does that look about right?

BTW In case you wondering why I using $3. $3 is the name of the file in which to make the substitution.
The code inside the for loop looks good after cfajohnson's changes are applied. But the for loop itself needs to go away. cfajohnson's code:
cp "$3" "/tmp/$3"
sed -e "s/$pattern1/$pattern2/g" "/tmp/$3" > "$3"
is good, but I did not see an explicit mention of eliminating that for loop. You do not want to perform the above two lines n times where n is the number of files in the directory. Then TinWalrus proposed alternate code that keeps the for loop. You need to nail this down. Should the script operate on one file? Or should it loop and operate on all files?

As for the && thing... I use && sometimes where I want the statements to be tightly coupled. A contrived example...
cd $MY_TEMP_DIRECTORY && rm -rf *

The alternate code:
if cd $MY_TEMP_DIRECTORY ; then
******rm -rf *
fi
scares me because I'm afraid the rm might get separated from the cd, maybe by inserting some debug code or something like that. Also another programmer might think that intent of the "if" statement is to simply check for the existence of of the directory. A lot of shell programmers think that an "if" statement only tests for something and they miss the fact that useful work is happening as well.
# 23  
Old 05-07-2007
Quote:
Originally Posted by reborg
Absolutely, comments (in code) should be used only where needed. Well written code needs very few comments to explain it. Professional scripts will usually have little more than header and function comments.

professionally speaking, from a large shop perspective where there are windows and unix admins who cross train - documenting a script is of high importance. a person with limited unix experience (especially one coming from the windows world) will have a difficult time understanding a shell script. it is also of critical importance to use version control and a central repository, especially if the script is going to be used on multiple systems.
# 24  
Old 05-07-2007
Quote:
Originally Posted by TinWalrus
professionally speaking, from a large shop perspective where there are windows and unix admins who cross train - documenting a script is of high importance. a person with limited unix experience (especially one coming from the windows world) will have a difficult time understanding a shell script.
I guess we're way off topic by now, but anyway.

I can certainly understand your reasoning there. I have never come across this situation. I have always worked in environments where one or more people are assigned the task of maintaining a script, but then again I have worked mostly in R&D where the rules about touching code are possibly more restrictive. Having people not familiar with Unix touching the code just wouldn't happen ( unless a trainee under supervision ).

I guess I should clarify my position.

1. I have no objection to the use of && or || in an example like that given by Perderabo, where it is used to perform a compound operations. This should and does read as a single line of code.

I do however have a problem with something like this:
command && { command2; command3 } || { command4; command 5}

Which was what I originally commented on ( the use of braces )


2. I don't have a problem with commenting, I do have a problem with using comments to explain code which which should not need to be explained. If simple logic needs to be explained then the script (or the person reading it Smilie ) is in my opinion broken.

Using simple syntax usually means the less commenting is needed, after all an if statement is an if statement irrespective of the syntax of the language used. A person who cannot understand an if/else statement should not be maintaining the code, on the other hand I could forgive someone from having problem understanding the example above. The K.I.S.S. approach has long since proven it's effectiveness.

Quote:
it is also of critical importance to use version control and a central repository, especially if the script is going to be used on multiple systems.
I agree completely, also in support of multi-track development this is essential, changes for one track may not be expected in another.
# 25  
Old 05-07-2007
First of all, Sorry for the late response...been a lonnnng weekend for me but I am learning a lot from the responses that I am getting. I just started with Unix programming for school and appreciate all of you helping a "newbie" out Smilie

Quote:
Originally Posted by Perderabo
The code inside the for loop looks good after cfajohnson's changes are applied. But the for loop itself needs to go away. cfajohnson's code:
cp "$3" "/tmp/$3"
sed -e "s/$pattern1/$pattern2/g" "/tmp/$3" > "$3"
is good, but I did not see an explicit mention of eliminating that for loop. You do not want to perform the above two lines n times where n is the number of files in the directory. Then TinWalrus proposed alternate code that keeps the for loop. You need to nail this down. Should the script operate on one file? Or should it loop and operate on all files?
Well the situation is that (just found out Sat. on what I was supposed to do) I have to have a loop but the filenames have to come from the command line and not from the loop (so I guess "foreach" loop is out the question) but I pretty sure that the sed command and either cp or mv command have to be invoked. What loop you think would work for this?
# 26  
Old 05-07-2007
Quote:
Originally Posted by csnewbie84
First of all, Sorry for the late response...been a lonnnng weekend for me but I am learning a lot from the responses that I am getting. I just started with Unix programming for school and appreciate all of you helping a "newbie" out Smilie


Well the situation is that (just found out Sat. on what I was supposed to do) I have to have a loop but the filenames have to come from the command line and not from the loop (so I guess "foreach" loop is out the question) but I pretty sure that the sed command and either cp or mv command have to be invoked. What loop you think would work for this?

Code:
for file in "$@"
do
  ...

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to replace lines in ksh Script

Hi All, I am novice to Unix and I need your expert advice for the below task. There is a KSH script file in which I need to replace few line as per the below expectations. So my file look like as # Host Setup Command: Line 1 Line 2 Line 3 Line 4 Line Any... (6 Replies)
Discussion started by: rupid0609
6 Replies

2. Shell Programming and Scripting

Deploy ksh script to file from other script

Hi all, I need to deploy two scripts on around ~100 machines and have only OPSware. Opsware have the option to execute a script, so I am trying to write a script which dose cat > script.ksh <<EOF script to be deployed EOF However the script between the two EOFs gets also executed which... (0 Replies)
Discussion started by: click
0 Replies

3. Shell Programming and Scripting

Help Create dynamic ksh script from a script

I am currently running 2 scripts to gather data for a 3rd script and would like to combine the 2 scripts into one. Having issues with the final output format. Note cannot post URL so replaced the http stuff with (name) in the examples All scripts contain #!/bin/ksh OS = Red Hat Enterprise... (0 Replies)
Discussion started by: pcpinkerton
0 Replies

4. Shell Programming and Scripting

KSH script to run other ksh scripts and output it to a file and/or email

Hi I am new to this Scripting process and would like to know How can i write a ksh script that will call other ksh scripts and write the output to a file and/or email. For example ------- Script ABC ------- a.ksh b.ksh c.ksh I need to call all three scripts execute them and... (2 Replies)
Discussion started by: pacifican
2 Replies

5. Shell Programming and Scripting

passing a variables value from the called script to calling script using ksh

How do i get the value of the variable from the called script(script2) to the calling script(script1) in ksh ? I've given portion of the script here to explain the problem. Portion of Script 1 ============= ----- ----- tmp=`a.ksh p1 p2 p3` if then # error processing fi -----... (10 Replies)
Discussion started by: rajarkumar
10 Replies

6. Shell Programming and Scripting

import var and function from ksh script to another ksh script

Ih all, i have multiples ksh scripts for crontab's unix jobs they all have same variables declarations and some similar functions i would have a only single script file to declare my variables, like: var1= "aaa" var2= "bbb" var3= "ccc" ... function ab { ...} function bc { ... }... (2 Replies)
Discussion started by: wolfhurt
2 Replies

7. Shell Programming and Scripting

tracing a ksh script within a ksh script

I normally trace a script with the ksh -x <script name> and redirect strderr to file. But if you have a script like the examble below...... vi hairy bear=`grep bear animals` if then ksh more_animals fi If I ksh -x hairy it won't trace "more_animals" unless I put a -x in it. Is... (1 Reply)
Discussion started by: shorty
1 Replies

8. Shell Programming and Scripting

how to convert unix .ksh script to windows .batch script

I am using awk in my .ksh script but when I am trying to run in windows its not recognising awk part of the ksh script , even when I changed it to gawk it does not work, this is how my .ksh and .bat files look like. thanx. #!/bin/ksh egrep -v "Rpt 038|PM$|Parameters:|Begin |Date: |End... (1 Reply)
Discussion started by: 2.5lt V8
1 Replies

9. Shell Programming and Scripting

executing a ksh script from another ksh script

Hi, I'm new to unix scripting.How can i call a script from another script. I have a.ksh and b.ksh .I have to call b.ksh from a.ksh after it is successfully exceuted. I tried using #!/bin/ksh -x in a.ksh and at the end i have used /path/b.ksh My problem is it is executing only a.ksh.it... (6 Replies)
Discussion started by: ammu
6 Replies

10. UNIX for Dummies Questions & Answers

SQL Script run in KSH Script

I've got a SQL script that is executed through a UNIX ksh script. It is working fine, but I wanted to add a line to put a date/time stamp in the log file that it generates. This is more of a SQL question, but I'm hoping someone can help me get the date/time...I've changed the script with the... (2 Replies)
Discussion started by: dstinsman
2 Replies
Login or Register to Ask a Question