10-01-2009
Not looking for files (type -f). Looking for directories that start with ABC. Once found, copy the directory and it's contents to /new/
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
Hi All,
I am newbie for Unix. I want to copy a directory from one location to other. Can any one help me by providing the command to do following task.
thanks in advance,
Rakesh (2 Replies)
Discussion started by: rakeshvthu
2 Replies
2. SuSE
I faced a problem when I tried to copy files from one directory to another using certain user although this user has r/w/x permission on source and destination directory ?? the OS is Linux-Suse 9
any help?? (2 Replies)
Discussion started by: mm00123
2 Replies
3. Shell Programming and Scripting
Hello folks hope all are doing well, i need to compress directories with range, i have total directories from 000-199
and i want to copy directories from 010 onwards to 020 meants total 11 directories, please suggest what regex will i use.
Thanks,
Bash (2 Replies)
Discussion started by: learnbash
2 Replies
4. Shell Programming and Scripting
Hi,
I have to copy last modified Directory to another directory.How can i Do using pipe or redirect
cp -R 'ls -lrt|tail -1' test is not working.
please help. (3 Replies)
Discussion started by: shaveta
3 Replies
5. UNIX for Dummies Questions & Answers
Hello all,
I've been researching this problem for days, and have gotten no luck . =/
How do you copy a file to another directory without being in the same directory as the file? So, for example, say I wanted to copy the file 'my.txt' that is in the directory ' /export/hom0/user/asdf ' to the... (9 Replies)
Discussion started by: kvnqiu
9 Replies
6. UNIX for Dummies Questions & Answers
Mi question is how can you copy only de three of directory and not the files in it.
Only a need the three of directorys not the files (6 Replies)
Discussion started by: enkei17
6 Replies
7. UNIX for Dummies Questions & Answers
I use (cp new folder directory), but it just makes a new folder, i want to copy everything in a directory not the actual directory. (10 Replies)
Discussion started by: wiinick
10 Replies
8. Shell Programming and Scripting
Hi experts
cp bin root src /mnt
but not copy bin/bigfile
any help?
( I post this thread in the "redhat" forum wrongly, I don't know how to withdraw that question in that wrong forum)
Thanks (6 Replies)
Discussion started by: yanglei_fage
6 Replies
9. Shell Programming and Scripting
How to copy files from one directory to another directory with the subfolders copied.
If i have folder1/sub1/sub2/* it needs to copy files to folder2/sub1/sub2/*.
I do not want to create sub folders in folder2.
Can copy command create them automatically?
I tried cp -a and cp -R but did... (4 Replies)
Discussion started by: santosh2626
4 Replies
10. Shell Programming and Scripting
Hi guys,
I need a solution to copy files and folders without using cp-r , cp-R or any variants. So i need to code it manually. I allready have a loop
#!bin/bash
IFS=$'\n'
if test "$1" = ""
then
wd=pwd
else
wd=$1
fi
for file in $(find $1)
do
if... (1 Reply)
Discussion started by: Wolverine89
1 Replies
LEARN ABOUT DEBIAN
dh_di_numbers
DH_DI_NUMBERS(1) Debhelper DH_DI_NUMBERS(1)
NAME
dh_di_numbers - install numbered scripts into package build directories
SYNOPSIS
dh_di_numbers [debhelper options] [dir [...] dest]
DESCRIPTION
dh_di_numbers is a debhelper program that installs directories of numbered scripts into package build directories.
Within each directory, there should be a "_numbers" file in which each line contains at least two space-separated fields. The first field
in each line is a two-digit number, which will be prefixed to the entry name to provide ordering within the directory; the second is the
entry name, which must correspond to a file or directory alongside the "_numbers" file; and the third field, if present, is another two-
digit number which identifies another entry with the same entry name to which this entry should be a symlink.
Any additional directory names specified as parameters will be installed in the package build directory of the first package dh_di_numbers
is told to act on. By default, this is the first binary package in debian/control, but if you use -p, -i, or -a flags, it will be the first
package specified by those flags.
FILES
debian/package.di-numbers
List the directories to install into each package and the directory they should be installed to. The format is a set of lines, where
each line lists a directory or directories to install, and at the end of the line tells the directory they should be installed in. The
name of the directories to install should be given relative to the current directory, while the installation directory is given
relative to the package build directory. You may use wildcards in the names of the files to install (in v3 mode and above).
OPTIONS
dir [...] dest
Lists directories to install and where to install them to. The files will be installed into the first package dh_di_numbers acts on.
SEE ALSO
debhelper(7)
This program is a part of dh-di.
AUTHOR
Colin Watson <cjwatson@debian.org>
3 2009-09-16 DH_DI_NUMBERS(1)