Sponsored Content
Full Discussion: Copying files to a directory
Top Forums Shell Programming and Scripting Copying files to a directory Post 302623395 by pundalik on Friday 13th of April 2012 01:34:54 PM
Old 04-13-2012
alright, let me try this, will let you know, thanks Buddy!

---------- Post updated at 12:34 PM ---------- Previous update was at 12:06 PM ----------

Hi Carlo,
this is what i tried..
Code:
$ find ./sites -type f -size +100c -exec cp '{}' test_folder/ \;

output
Code:
$ ls
_default.js
_ufJ5Dj-I0hNcp9i5lK.gif
_ufJ5Dj-I0kNcKd9l5I.gif
_ufJ5Dj-I0Ngyo2MXL.gif
_ufJ5Dj-I3mWAw1A7a.jpg
_ufJ5Dj-I7Tdcg9TYxo.gif
_ufJ5Dj-IA6cQ0Ab8U.gif
_ufJ5Dj-ICgOcTpLZnl.gif
_ufJ5Dj-iCLXp4WGAO.html
_ufJ5Dj-ICSdcjMqtCI.gif
_ufJ5Dj-Id8dcnN0gcp.gif

$ ls -l
total 32517
----------+ 1 epunsut Domain Users     155 Apr 13 12:30 _default.js
-rwxr-xr-x+ 1 epunsut Domain Users    3014 Apr 13 12:30 _ufJ5Dj-I0hNcp9i5lK.gif
-rwxr-xr-x+ 1 epunsut Domain Users    9293 Apr 13 12:30 _ufJ5Dj-I0kNcKd9l5I.gif
-rwxr-xr-x+ 1 epunsut Domain Users    1423 Apr 13 12:30 _ufJ5Dj-I0Ngyo2MXL.gif
-rwxr-xr-x+ 1 epunsut Domain Users    1615 Apr 13 12:30 _ufJ5Dj-I3mWAw1A7a.jpg
-rwxr-xr-x+ 1 epunsut Domain Users    9293 Apr 13 12:30 _ufJ5Dj-I7Tdcg9TYxo.gif
-rwxr-xr-x+ 1 epunsut Domain Users    9331 Apr 13 12:30 _ufJ5Dj-IA6cQ0Ab8U.gif
-rwxr-xr-x+ 1 epunsut Domain Users    7901 Apr 13 12:30 _ufJ5Dj-ICgOcTpLZnl.gif
-rwxr-xr-x+ 1 epunsut Domain Users   16752 Apr 13 12:30 _ufJ5Dj-iCLXp4WGAO.html
-rwxr-xr-x+ 1 epunsut Domain Users    9867 Apr 13 12:30 _ufJ5Dj-ICSdcjMqtCI.gif

here if you notice, the file are arranged according to the name, ( refering the output of ls command ) ( ls -l is just used as reference to point out my query)

so here i need the files to be arranged in terms of size and not in terms of name, when i run the fin d command.

Last edited by Franklin52; 04-15-2012 at 11:30 AM.. Reason: Please use code tags for data and code samples, thank you
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Copying files from one directory to Other

Hi UNIX Gurus, Could please help me out regarding following situation. I am copying some files from one directory to other directotry using following command. cp /var/tmp/*date*.gz /var/tmp/user/ Problem: Once the copy has completed, I need to check whether all the files (including... (3 Replies)
Discussion started by: satishkeshetty
3 Replies

2. UNIX for Dummies Questions & Answers

Help with cron: copying all files in a directory to another...

Here's what I have thus far: cp -r /home/mydom/public_html/products/Widget/ /home/mydom/public_html/ This works fine but suppose the folder in public_html has a different name (Main_Widget). The cron above needs to copy the files within the folder (Widget) instead of the folder itself. How... (1 Reply)
Discussion started by: ashleyquick
1 Replies

3. Shell Programming and Scripting

Synchronization in copying multiple files to a directory

Hi Friends, My goal is to copy 1000 of files of same filesize simultaneously to a directory. i.e i do multiple copies into a same directory. What i feel here is, at some 1000th iteration, few transfers ends in advance before some transfers start. I need to get synchronized file transfers so that... (1 Reply)
Discussion started by: amio
1 Replies

4. Shell Programming and Scripting

Copying files from one directory into another.

Could someone please tell me if there is a command similar to head or tail that can be used on directories. I want to select a given number of files from a directory and copy them into another directory. But I found out I can't use head as it doesn't (or I don't know how yet!) work on directories.... (4 Replies)
Discussion started by: Krush187
4 Replies

5. Shell Programming and Scripting

Copying files to a directory

Hi I have a few questions. I am trying to copy a file to a directory. I need to copy files that do not end in numbers, for example, into a directory. This is what I tried so far. cp filename directorytowhereIwannacopy but it says it can't copy to a directory. I need to copy many files into one... (2 Replies)
Discussion started by: #moveon
2 Replies

6. Shell Programming and Scripting

Find a directory and copying files to it

Hi all, wondering if someone would be able to help with a little query I have. I currently have a script which copies everything in a specific directory to a number of other directories depending on a variable. The problem I have is the destination directories vary (in and incoming directories)... (3 Replies)
Discussion started by: JayC89
3 Replies

7. UNIX for Dummies Questions & Answers

No such file or directory error while copying files

Hi, I need to copy files from one dir to another dir. The list of filesnames to be moved are in a file called files2cp.log Script: #!/bin/ksh exec 0</home/amdocs/files2cp.log while read LINE do cp -i /iccs33/attach/"$LINE" /iccs30/attach/"$LINE" done The output is "No such... (6 Replies)
Discussion started by: srinirsr
6 Replies

8. UNIX for Dummies Questions & Answers

Help in copying multiple files from th directory

Hey Guys, I have directory with thousands of files, I need to copy only march data. can any one please Help.......... Thanks, Uttam N (4 Replies)
Discussion started by: Uttamnsd
4 Replies

9. Shell Programming and Scripting

Copying files from parent directory only

Hello, Please can someone assist on a issue I am having. I want to find specific files in the parent directory only that have been modified over the last 2 days and copy them to another location. NOTE: The version of AIX I am using does not have MAXDEPTH. I have currently written the... (3 Replies)
Discussion started by: Dolph
3 Replies

10. Shell Programming and Scripting

Copying files from one directory to another, renaming duplicates.

Below is the script i have but i would like simplified but still do the same job. I need a script to copy files not directories or sub-directories into a existing or new directory. The files, if have the same name but different extension; for example 01.doc 01.pdf then only copy the .doc file. ... (1 Reply)
Discussion started by: Gilljambo
1 Replies
rc.config(4)						     Kernel Interfaces Manual						      rc.config(4)

NAME
rc.config, rc.config.d - files containing system configuration information SYNOPSIS
DESCRIPTION
The system configuration used at startup is contained in files within the directory The file sources all of the files within and and exports their contents to the environment. /etc/rc.config The file is a script that sources all of the scripts, and also sources To read the configuration definitions, only this file need be sourced. This file is sourced by whenever it is run, such as when the command is run to transition between run states. Each file that exists in is sourced, without regard to which startup scripts are to be executed. /etc/rc.config.d The configuration information is structured as a directory of files, rather than as a single file containing the same information. This allows developers to create and manage their own configuration files here, without the complications of shared ownership and access of a common file. /etc/rc.config.d/* Files This is where files containing configuration variable assignments are located. Configuration scripts must be written to be read by the POSIX shell, and not the Bourne shell, or In some cases, these files must also be read and possibly modified by control scripts or the sam program. See sd(4) and sam(1M). For this reason, each variable definition must appear on a separate line, with the syntax: No trailing comments may appear on a variable definition line. Comment statements must be on separate lines, with the comment character in column one. This example shows the required syntax for configuration files: Configuration variables may be declared as array parameters when describing multiple instances of the variable configuration. For example, a system may contain two network interfaces, each having a unique IP address and subnet mask (see ifconfig(1M)). An example of such a dec- laration is as follows: Note that there must be no requirements on the order of the files sourced. This means configuration files must not refer to variables defined in other configuration files, since there is no guarantee that the variable being referenced is currently defined. There is no protection against environment variable namespace collision in these configuration files. Programmers must take care to avoid such prob- lems. /etc/TIMEZONE The file contains the definition of the environment variable. This file is required by POSIX. It is sourced by at the same time the files are sourced. SEE ALSO
rc(1M). rc.config(4)
All times are GMT -4. The time now is 09:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy