Sponsored Content
Top Forums Shell Programming and Scripting Use find with cp and sed in ksh to copy files to a slightly different location Post 302984055 by RudiC on Thursday 20th of October 2016 08:50:32 AM
Old 10-20-2016
I don't think the second % is needed as you want to remove one single occurrence only.
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

copy files from one location to similar location

I need help in forming a script to copy files from one location which has a sub directory structure to another location with similar sub directory structure, say location 1, /home/rick/tmp_files/1-12/00-25/ here 1-12 are the number of sub directories under tmp_files and 00-25 are sub... (1 Reply)
Discussion started by: pharos467
1 Replies

2. Shell Programming and Scripting

Shell Script for Copy files from one location to another location

Create a script that copies files from one specified directory to another specified directory, in the order they were created in the original directory between specified times. Copy the files at a specified interval. (2 Replies)
Discussion started by: allways4u21
2 Replies

3. Shell Programming and Scripting

Copy files in thumbnail folder to a secondary location for Amazon S3

Hello all! I am trying to create a script that will copy files from one location, to another but only folders that are filled with thumbnails to an exact directory replica in the second location. For example: /images/2012/01/19/Event/Photographer/thumbnails to ... (4 Replies)
Discussion started by: Buzzman25
4 Replies

4. UNIX for Dummies Questions & Answers

how to copy files and record original file location?

:EDIT: I think my post name should have been labeled: how to copy files and record original file location. not "retain". Hello, this is my first post! I searched the forums a lot before posting, but was unable to answer my question. Here's my problem: There are several hundred text files... (4 Replies)
Discussion started by: willie8605
4 Replies

5. Shell Programming and Scripting

How to copy files from one location to another based on a priority?

Hi Gurus, I am a newbie to shell scripting and I am facing a problem right now.I have to automate the copy of files based on a priority.The scenario is as below: 1) There will be files from Mon-Fri with Mon file being named as abc_def_01_YYYYMMDD and Tue file being abc_def_02_YYYYMMDD and so... (4 Replies)
Discussion started by: vikramgk9
4 Replies

6. Shell Programming and Scripting

Copy files from one location to another

I have below files in one location /test/files and also for each dates there are similar files A20130924.0000-0005_file1 A20130924.0000-0005_file2 A20130924.0005-0010_file1 A20130924.0005-0010_file2 . . . A20130924.2355-0000_file1 A20130924.2355-0000_file2 If i execute the script like... (4 Replies)
Discussion started by: Saidul
4 Replies

7. Shell Programming and Scripting

How to copy files from one location to another using xargs??

Hello Experts, I need to copy files from one location to another using xargs. Tried something like this (In Ubuntu & Solaris ). mkdir -p 1234; find /home/emd/Desktop/n007/M007/ -type f -name "A2014*" | xargs -0 cp -r {} /home/emd/Desktop/1234 But every time i run this, a weird error... (6 Replies)
Discussion started by: Saidul
6 Replies

8. Shell Programming and Scripting

Find and Copy file of specific location

Dear All, I need to transfer all files present in one location to another but those files should be of specific extension like. Find and copy all files of extension .xls, .pdf, .txt from location usr/tmp to location /per/Treat (6 Replies)
Discussion started by: yadavricky
6 Replies

9. UNIX for Beginners Questions & Answers

Copy data at specified location from multiple files

Hello everyone, Im super new to coding but increasingly in need of it at work. Im have task stacked because of this problems, that I cannot figure out how to solve looking on the internet after trying many many things that looked similar to me. I have multiple data files of the form (see below).... (2 Replies)
Discussion started by: Xfiles_fan
2 Replies
attrlist(1m)															      attrlist(1m)

NAME
attrlist - A dcecp task object that manipulates attribute lists SYNOPSIS
attrlist add attrlist -member attrlist attrlist getvalues attrlist -type typename attrlist help [operation | -verbose] attrlist list attrlist attrlist modify attrlist {[-add attribute_type attribute_values] [-change attribute_type attribute_values] [-remove attribute_type attribute_values]} attrlist operations attrlist remove attrlist -member attrlist ARGUMENTS
A list of one or more dcecp elements. An attrlist can be a single character, but usually consists of at least one attribute type and its value, as shown in the following: {CDS_Convergence medium} The name of the attrlist operation for which to display help information. DESCRIPTION
The attrlist task object represents an attribute list as returned or accepted by many dcecp commands. Use this object to check or manipu- late attribute lists so that they can be used by other commands, most commonly in scripts. OPERATIONS
attrlist add Appends one attribute list to another. The syntax is as follows: attrlist add attrlist -member attrlist The add operation returns an attribute list with the attributes specified as the value of the required -member option appended. Privileges Required No special privileges are needed to use the attrlist add command. Examples dcecp> attrlist add {{a b} {c d}} -member {{e f} {g h}} {a b} {c d} {e f} {g h} dcecp> attrlist getvalues Returns the values of the attributes named in an attribute list. The syntax is as follows: attrlist getvalues attrlist -type typename The getvalues operation returns the values of all attributes that are both named in the attribute list and of the type specified by the required -type option. The value can be a single type, but if the attribute appears more than once in the attribute list, the value of each instance is returned on a separate line. Privileges Required No special privileges are needed to use the attrlist getvalues command. Examples dcecp> attrlist getvalues {{a w x} {c y} {a z}] -type a {w x} z dcecp> This command can be used to filter the output of show operations. For example: dcecp> attrlist getvalues [dir show /.:/hosts] -type CDS_UTS 1994-07-01-10:29:59.265-05:00I0.000/00-00-c0-f7-de-56 dcecp> With abbreviations, the above command could be entered as follows: dcecp> at g [dir show /.:/hosts] -t CDS_UTS 1994-07-01-10:29:59.265-05:00I0.000/00-00-c0-f7-de-56 dcecp> attrlist help Returns help information about the attrlist task object and its operations. The syntax is as follows: attrlist help [operation | -verbose] Options Displays information about the attrlist task object. Used without an argument or option, the attrlist help command returns brief information about each attrlist operation. The optional opera- tion argument is the name of an operation about which you want detailed information. Alternatively, you can use the -verbose option for more detailed information about the attrlist task object itself. Privileges Required No special privileges are needed to use the attrlist help command. Examples dcecp> attrlist help add Adds attributes to a list. getvalues Returns the values of specified attributes. list Returns the attribute types present in a list. modify Modifies an attribute list. remove Removes attributes from a list. help Prints a summary of command-line options. operations Returns a list of the valid operations for this command. dcecp> attrlist list Returns a list of attribute type names from an attribute list. The syntax is as follows: attrlist list attrlist The list operation returns a list of all the attribute type names in the attribute list in the order that they appear in the list. Privileges Required No special privileges are needed to use the attrlist list command. Examples dcecp> attrlist list {{a b} {c d}} a c dcecp> attrlist modify Removes and changes attributes and their values in an attribute list. The syntax is as follows: attrlist modify attrlist {[-add attribute_type attribute_values] [-change attribute_type attribute_values] [-remove attribute_type attribute_values]} The modify operation returns an attribute list with the input attributes modified as specified by the -add, -remove and -change options. New attributes can be added, or new values added to existing attributes with -add. Entire attributes or attribute values can be removed with -remove. The -change option removes all values from an existing attribute and replaces them with new values specified. Privileges Required No special privileges are needed to use the attrlist modify command. Examples dcecp> attrlist modify {{a b} {c d}} -add {{c e}} {a b} {c d e} dcecp> dcecp> attrlist modify {{a b} {c d e}} -remove {{c e}} {a b} {c d} dcecp> dcecp> attrlist modify {{a b} {c d e}} -change {{c f}} {a b} {c f} dcecp> attrlist operations Returns a list of the operations supported by the attrlist task object. The syntax is as follows: attrlist operations The list of available operations is in alphabetical order except for help and operations, which are listed last. Privileges Required No special privileges are needed to use the attrlist operations command. Examples dcecp> attrlist operations add getvalues list modify remove help operations dcecp> attrlist remove Removes attributes and their values from an attribute list. The syntax is as follows: attrlist remove attrlist -member attrlist The remove operation returns an attribute list after removing attribute types (and their values) specified as an argument to the required -member option. This command removes entire attributes only; to remove specific values, use the attrlist modify command. Privileges Required No special privileges are needed to use the attrlist remove command. Examples dcecp> attrlist remove {{a b} {c d} {e f} {g h}} -member {e g} {a b} {c d} dcecp> RELATED INFORMATION
Commands: dcecp(1m). attrlist(1m)
All times are GMT -4. The time now is 01:53 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy