confused with cp


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting confused with cp
# 8  
Old 05-24-2005
If your script name is test.sh and say $2 turns out to be trust,

then $0 $2 is equivalent to

test.sh trust

And since you dont have more than one argument, it will not be recursive.

Vino
# 9  
Old 05-24-2005
When a script can recurse at most one time, do you still call it recursive? I'm not sure either. We use UUOC to mean "unnecessary use of cat". Maybe we need UUOR to go with it? How about this alternative..,
Code:
if [ $# -eq 2 ] ; then
	cp $1 $2
	shift
fi
tmp=`wc -l < $1`
echo $tmp
while [ $tmp -ne 0 ] ; do
	echo `head -$tmp $1 | tail +$tmp` >> $1.tmp
	tmp=$(($tmp -1))
done
mv $1.tmp $1
fi

# 10  
Old 05-25-2005
Computer

Quote:
Originally Posted by C|[anti-trust]
may i know what
Code:
cp $1 $2
    $0 $2

does?
well im not talking about recursivity!
i wish to know how does this work?
# 11  
Old 05-25-2005
Quote:
Originally Posted by C|[anti-trust]
well im not talking about recursivity!
i wish to know how does this work?
vino has answered your question, correctly as far as I can see. He mentioned that the script is using recursion. And since you used the present tense, wish, it is apparently the recursion that is still confusing you.
# 12  
Old 05-25-2005
C|[anti-trust],

In

Code:
cp $1 $2
$0 $2

,


Code:
$0 $2

is not part of the cp command

Code:
cp $1 $2

This code will give the same results with an echo'ed string.
Code:
cp $1 $2
echo " cp $1 to $2"
$0 $2

Vino
# 13  
Old 05-26-2005
Code:
if [ $# -eq 2 ]; then
	cp $1 $2
	$0 $2
else
	tmp=`cat $1 | wc -l`
	echo $tmp
	while [ $tmp -ne 0 ] ; do
		echo `head -$tmp $1 | tail +$tmp` >> $1.tmp
		tmp=$(($tmp -1))
	done
	mv $1.tmp $1
fi


Concur with everyone's comment on this part of the code.
Here is mine.

The script is always taking $1 through out and ignoring $2.
I feel 'if' construct is not at all needed there. The code in 'else'
part simply works.

Only thing 'if' part doing is ,
if the script is provided with 2 arguments as files,
override the 2nd file contents with first file.
the second line $0 $2 is going recursive second and last time
leading that to else part.


"Complex way of doing things"
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Confused with if/then

Hi All, I'm pretty new to this so please bear with me... I'm trying to write a bash script to first search in a file for a string of characters; if the characters exist than skip the rest of the code until you get to the last line and run that command /sbdin/ldconfig; if the string doesn't... (2 Replies)
Discussion started by: gmdune
2 Replies

2. Shell Programming and Scripting

Confused with redirection

Hi Guys, First of all I am not entirely sure if this is the correct way of doing what I need to be done. I have tried to google for some suggestions and so far it got me more confused. Basically what I need is to pipe the output of a program to a function in KSH and inside the function some... (1 Reply)
Discussion started by: maddmaster
1 Replies

3. Ubuntu

New and Confused

Hello, I am having a problem with Dual Booting Windows XP Pro and Linux Mint. I have Three Hard Drives, One Hard Drive has Linux Mint Loaded on it. When it is hooked up to the computer by itself it works great. This is an IDE Drive. The Second Hard Drive has Window XP Pro loaded on it.... (3 Replies)
Discussion started by: Forextrading
3 Replies

4. Solaris

Confused c#t#d#s#

I am confused c#t#d#s# once I learn the following : slice 0 ...... 0 to 2520 slice 1....... 2521 to 2840 slice 6........2841 to 8891 slice 2........0 to 8891 really really confused. Please explain. (8 Replies)
Discussion started by: deltakutty
8 Replies

5. UNIX for Dummies Questions & Answers

Confused with the permission

Hi, One of the directory in my folder has the following persion : drwxr-sr-x Can any one explain this permission and how can his occur ? This folder is created with Win SCP. Any folder created with win SCP is being set to this permission only. (1 Reply)
Discussion started by: risshanth
1 Replies

6. Shell Programming and Scripting

sed very confused

Hello experts, I have this complicated code that output value in between pattern and add "a string" to the front of the output. The problems I have many pattern that are the same. so I want to know how to get the value between 1st pattern, 2nd pattern etc. Any suggestions? sed -n... (14 Replies)
Discussion started by: minifish
14 Replies

7. UNIX for Dummies Questions & Answers

confused

A red hat linux ftp server exists in which a file exists. My problem is I need to connect to this server from my windows xp terminal which is in the same network & retrieve the file then convert it to xcel for some data Pls advs commands and procedure to connect to the machine...oh my god... (1 Reply)
Discussion started by: sauravjung
1 Replies

8. UNIX for Dummies Questions & Answers

confused

hi! how when i'm chattin inside com there was this chatter andi don't know what he did but he saw all my files inside my shell. what did he do? (4 Replies)
Discussion started by: hapiworm
4 Replies

9. UNIX for Dummies Questions & Answers

confused,,,,

Hi,,, is there any possibility to install Linux in my P.C which is use Win98 without loose anything from my hard disk???? ---------------------------------------------------------------------------------- Is it better for a newbie in this kind of OS to install Linux instead of... (5 Replies)
Discussion started by: spyros
5 Replies
Login or Register to Ask a Question