Sponsored Content
Top Forums Shell Programming and Scripting scp : recursive copy doesn't work Post 302367367 by madmat on Monday 2nd of November 2009 10:37:17 AM
Old 11-02-2009
Thank you, but I'd like to automatic create the correct path on destination but maybe it's not possible...
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

recursive copy of hidden files

I need to know how to copy hidden files recursively? cp -r sourceDir/* targetDir/. ignores the hidden files. Thank you!! (2 Replies)
Discussion started by: usfrog
2 Replies

2. UNIX for Dummies Questions & Answers

Script doesn't work, but commands inside work

Howdie everyone... I have a shell script RemoveFiles.sh Inside this file, it only has two commands as below: rm -f ../../reportToday/temp/* rm -f ../../report/* My problem is that when i execute this script, nothing happened. Files remained unremoved. I don't see any error message as it... (2 Replies)
Discussion started by: cheongww
2 Replies

3. Programming

recursive copy of the directory

I want to copy a directory recursively ( it again has directories) and the directory is on windows and is nfsmounted in vxWorks, i am using unix to develop the code for this, can any one suggest me how to copy the directories recursively. (7 Replies)
Discussion started by: deepthi.s
7 Replies

4. UNIX for Dummies Questions & Answers

Recursive copy to a RANDOM name

Dear Group, after trying numerous suggestions and racking my brain I cannot manage something which seems so simple. Essentiallly, I would like to perform a recursive copy to a destination but give it a random name. I assumed (incorrectly) that the following would work: cp -r... (10 Replies)
Discussion started by: xerexes
10 Replies

5. UNIX for Dummies Questions & Answers

help with recursive copy command

Hi Guys, I am experiencing a problem right now while copying a directory as well as its subdirectories to my target directory. I know this is a very simple UNIX command using cp -R source directory target directory. but unfortunatley while doing this an error comes up on the command line saying... (2 Replies)
Discussion started by: Knowledge_Xfer
2 Replies

6. UNIX for Dummies Questions & Answers

How does solaris recursive scp work?

How does recursive scp work? By recursive I think it should follow all the directories and copy all the matching files. It doesn't work like what I would expect. Here is a simple example that shows scp -r does not go into the subdirectories "one" and "two": $ ls one two zero.txt $ ls one... (6 Replies)
Discussion started by: mattx10
6 Replies

7. Shell Programming and Scripting

recursive search and copy

Hello again. Well, I need help again sooner as I thought. Now I want to search for files with a known name within all subdirs, and copy the to differently named files in the same directory. For example if I had only one file to copy, I would just usecp fileName newFileNamebut to do this... (1 Reply)
Discussion started by: cabaciucia
1 Replies

8. UNIX for Dummies Questions & Answers

recursive copy into a directory and all its subdirectories...

I want to copy a file from the top directory into all the sub-folders and all of the sub-folders of those sub-folder etc. Does anyone have any idea how to do this? Thanks in advance of any help you can give. (3 Replies)
Discussion started by: EinsteinMcfly
3 Replies

9. Shell Programming and Scripting

Recursive search for files and copy to new directories

So I have extremely limited experience with shell scripting and I was hoping someone could point out a few commands I need to use in order to pull this off with a shell script like BASH or whatnot (this is on OS X). I need to search out for filenames with account numbers in the name itself... (3 Replies)
Discussion started by: flyawaymike
3 Replies

10. HP-UX

Recursive copy of Folders with files

Dear All, I will appreciate any help received. Our system is running on hpux v1 My problem is as follows: We have many customer folders with name fd000100, fd000101 and so on e.g. (Testrun)(testsqa):/>ll /TESTrun/fd000100 total 48 drwxrwx--- 2 fq000100 test 96 Jun 27 2004... (17 Replies)
Discussion started by: mhbd
17 Replies
DH_LINK(1)							     Debhelper								DH_LINK(1)

NAME
       dh_link - create symlinks in package build directories

SYNOPSIS
       dh_link [debhelperoptions] [-A] [-Xitem] [sourcedestination...]

DESCRIPTION
       dh_link is a debhelper program that creates symlinks in package build directories.

       dh_link accepts a list of pairs of source and destination files. The source files are the already existing files that will be symlinked
       from (called target by ln(1)). The destination files are the symlinks that will be created (called link name by ln(1)). There must be an
       equal number of source and destination files specified.

       Be sure you do specify the absolute path to both the source and destination files (unlike you would do if you were using something like
       ln(1)).	Please note that the leading slash is optional.

       dh_link will generate symlinks that comply with Debian policy - absolute when policy says they should be absolute, and relative links with
       as short a path as possible. It will also create any subdirectories it needs to put the symlinks in.

       Any pre-existing destination files will be replaced with symlinks.

       dh_link also scans the package build tree for existing symlinks which do not conform to Debian policy, and corrects them (v4 or later).

FILES
       debian/package.links
	   Lists pairs of source and destination files to be symlinked. Each pair should be put on its own line, with the source and destination
	   separated by whitespace.

	   In each pair the source file (called target by ln(1)) comes first and is followed by the destination file (called link name by ln(1)).
	   Thus the pairs of source and destination files in each line are give in the same order as they would be given to ln(1).

	   In contrast to ln(1), source and destination paths must be absolute (the leading slash is optional).

OPTIONS
       -A, --all
	   Create any links specified by command line parameters in ALL packages acted on, not just the first.

       -Xitem, --exclude=item
	   Exclude symlinks that contain item anywhere in their filename from being corrected to comply with Debian policy.

       source destination ...
	   Create a file named destination as a link to a file named source. Do this in the package build directory of the first package acted on.
	   (Or in all packages if -A is specified.)

EXAMPLES
	dh_link usr/share/man/man1/foo.1 usr/share/man/man1/bar.1

       Make bar.1 be a symlink to foo.1

	dh_link var/lib/foo usr/lib/foo 
	  usr/share/man/man1/foo.1 usr/share/man/man1/bar.1

       Make /usr/lib/foo/ be a link to /var/lib/foo/, and bar.1 be a symlink to the foo.1

	var/lib/foo usr/lib/foo
	usr/share/man/man1/foo.1 usr/share/man/man1/bar.1

       Same as above but as content for a debian/package.links file.

SEE ALSO
       debhelper(7)

       This program is a part of debhelper.

AUTHOR
       Joey Hess <joeyh@debian.org>

11.1.6ubuntu2							    2018-05-10								DH_LINK(1)
All times are GMT -4. The time now is 08:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy