confused with cp


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting confused with cp
# 1  
Old 05-23-2005
CPU & Memory confused with cp

may i know what
Code:
cp $1 $2
    $0 $2

does?
# 2  
Old 05-24-2005
Did you come up with this ?


Code:
cp $1 $2
    $0 $2

If you are trying to provide multiple arguments for cp, this is what man cp has to say..
Code:
DESCRIPTION
       Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.

Keeping your command in tune with the man cp, we probably might have the following:

Code:
cp $1 $0 $2

which is self explanatory as per the man page.

Hopefully , this is what you were looking for.

Vino
# 3  
Old 05-24-2005
well, i read in a book,

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

but i cant figure out how this

Code:
cp $1 $2
	$0 $2

could affect the script
# 4  
Old 05-24-2005
That looks better.

Code:
if [ $# -eq 2 ]; then
	cp $1 $2
	$0 $2
else

Here's my analysis.

If you have 2 command line arguments provided by the user, then make argument 2 the same as argument 1.

And after you are done with that,

execute the script with $2 as an argument. In the shell scripting world, $0 holds the name of the script. So basically, you call the script with the value held in $2.

Let me know if you dont understand.

Vino

Last edited by vino; 05-24-2005 at 04:41 AM..
# 5  
Old 05-24-2005
hmm so it is a recursivity script Smilie
thanks
# 6  
Old 05-24-2005
Not a recursive one. I made a mistake in my explanation. Smilie

The point is..

If you have two arguments, then make arg1 and arg2 the same.

Else, find the numbers of lines in $1 and carry on ..

Vino
# 7  
Old 05-24-2005
Error

but my question is what does $0 $2 below the cp command do?
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