Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Find most recent file and copy to another directory. Post 302940399 by RudiC on Saturday 4th of April 2015 03:19:27 PM
Old 04-04-2015
Try
Code:
X=126
for FN in $(ls ABCD*)
   do   T=${FN%.*}
        NO=${T##*[A-Z]}
        [[ 10#$NO -gt $X ]] && echo mv ${FN%${NO}*}${NO}${FN#*${NO}} ./NEWDIR/
   done
mv ABCD_ABC_Abc_AB0127.abc ./NEWDIR/
mv ABCD_ABC_Abc_AB0128.abc ./NEWDIR/

This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

reading directory for most recent file?

Dear All, I'm trying to write a script that searches thru a directory looking for a most recent file and then scp that file. I have the scp working, but I don't know how to browse the directory and select the most recent file. The file name includes a date & time stamp (e.g.... (3 Replies)
Discussion started by: duncan_glover
3 Replies

2. Shell Programming and Scripting

find files and copy into a directory

hi all, can u please help me in finding all ksh file in directory and including all subdirectories and then copy those files into another directory. thanks in advance -bali (4 Replies)
Discussion started by: balireddy_77
4 Replies

3. Shell Programming and Scripting

crontab; copy most recent *.mpg file from local machine to smb storage device

Hello, I've been searching your forum for an answer to the following question and whilst I've seen several which may help I'm afraid my inexperience with UNIX systems has got the better of me and I'm incapable of piecing your considerable expertise together. Problem: I have a linux box which... (5 Replies)
Discussion started by: julezsht
5 Replies

4. Shell Programming and Scripting

find the most recent file containing a certain string

I want to find the most recent file containing ' NORESETLOGS" I'm already here but, how to sort this now in a correct way ? By the way, my version of find does not know about 'fprint' find . -type f -exec grep -i " NORESETLOGS" {} \; -exec ls -l {} \; | grep -vi " RESETLOGS" (5 Replies)
Discussion started by: plelie2
5 Replies

5. Shell Programming and Scripting

find and copy file to another directory..

Hi Everybody, i want a samll help to write a script. i had source location with :/user/bin (bin contains subdirectories with like names emails etc and had several files in each subdirectory) and target location with :/usr/scripts (having same subdirectories names and had some files)... (1 Reply)
Discussion started by: Reddy482
1 Replies

6. UNIX for Dummies Questions & Answers

How to find and copy files from one directory to another

Ok i have three directories Destination - /u/dir1 (has subdirectories dir2 which also has subdirectory dir3) Source1 - /u/test/files/dir1/dir2/dir3 Source2 - /u/out/images/dir1/dir2/dir3 What i would like to do is copy everything from Source1 and Source2 into the Destination directory.... (3 Replies)
Discussion started by: ziggy25
3 Replies

7. UNIX for Dummies Questions & Answers

command to find most recent file

Hi, Here is my problem: I try to write a script to find data in a file named "data" for exemple. Let's say I am in the directory /x/y/z, there are several sub-directories in the "z" directory (each sub-directory has a file "data") and I am searching for the word "help". So I use this... (9 Replies)
Discussion started by: StephB
9 Replies

8. Shell Programming and Scripting

How to find the recent file in many sub-directories?

Hi guys, Under my root directory there are many sub-directories which contains log file for every day of running. How can I find , in one command only, the recent log file in each sub-directory? For example, If I run the following: find . -name "exp_prod_*_*_yes_*_.log" -exec ls -ltr {} \;... (12 Replies)
Discussion started by: nir_s
12 Replies

9. Shell Programming and Scripting

How to recursively copy directory only for recent files?

I love the -newerct flag for the Cygwin find command on windows. Can I use "/usr/bin/find . -newerct '3 hours ago'" to conditionally copy a directory tree so that only the files in the directory tree that are younger than 3 hours are copied to my destination directory such that the directory... (4 Replies)
Discussion started by: siegfried
4 Replies

10. Shell Programming and Scripting

Help script find file most recent

Hi, I need to find the most recent files by their name from an X repertoire. The problem is that the name of the files is of type: POWERL10_20151203000.xml POWERL10_20151203001.xml POWERL10_20151202000.xml FIXED VALUE_DATENNN.xml NNN = Sequential number I would need to recover the... (4 Replies)
Discussion started by: verita
4 Replies
gettext(3pm)						User Contributed Perl Documentation					      gettext(3pm)

NAME
Locale::gettext - message handling functions SYNOPSIS
use Locale::gettext; use POSIX; # Needed for setlocale() setlocale(LC_MESSAGES, ""); # OO interface my $d = Locale::gettext->domain("my_program"); print $d->get("Welcome to my program"), " "; # (printed in the local language) # Direct access to C functions textdomain("my_program"); print gettext("Welcome to my program"), " "; # (printed in the local language) DESCRIPTION
The gettext module permits access from perl to the gettext() family of functions for retrieving message strings from databases constructed to internationalize software. $d = Locale::gettext->domain(DOMAIN) $d = Locale::gettext->domain_raw(DOMAIN) Creates a new object for retrieving strings in the domain DOMAIN and returns it. "domain" requests that strings be returned as Perl strings (possibly with wide characters) if possible while "domain_raw" requests that octet strings directly from functions like "dgettext()". $d->get(MSGID) Calls "dgettext()" to return the translated string for the given MSGID. $d->cget(MSGID, CATEGORY) Calls "dcgettext()" to return the translated string for the given MSGID in the given CATEGORY. $d->nget(MSGID, MSGID_PLURAL, N) Calls "dngettext()" to return the translated string for the given MSGID or MSGID_PLURAL depending on N. $d->ncget(MSGID, MSGID_PLURAL, N, CATEGORY) Calls "dngettext()" to return the translated string for the given MSGID or MSGID_PLURAL depending on N in the given CATEGORY. $d->dir([NEWDIR]) If NEWDIR is given, calls "bindtextdomain" to set the name of the directory where messages for the domain represented by $d are found. Returns the (possibly changed) current directory name. $d->codeset([NEWCODE]) For instances created with "Locale::gettext->domain_raw", manuiplates the character set of the returned strings. If NEWCODE is given, calls "bind_textdomain_codeset" to set the character encoding in which messages for the domain represented by $d are returned. Returns the (possibly changed) current encoding name. gettext(), dgettext(), and dcgettext() attempt to retrieve a string matching their "msgid" parameter within the context of the current locale. dcgettext() takes the message's category and the text domain as parameters while dgettext() defaults to the LC_MESSAGES category and gettext() defaults to LC_MESSAGES and uses the current text domain. If the string is not found in the database, then "msgid" is returned. ngettext(), dngettext(), and dcngettext() function similarily but implement differentiation of messages between singular and plural. See the documentation for the corresponding C functions for details. textdomain() sets the current text domain and returns the previously active domain. bindtextdomain(domain, dirname) instructs the retrieval functions to look for the databases belonging to domain "domain" in the directory "dirname" bind_textdomain_codeset(domain, codeset) instructs the retrieval functions to translate the returned messages to the character encoding given by codeset if the encoding of the message catalog is known. NOTES
Not all platforms provide all of the functions. Functions that are not available in the underlying C library will not be available in Perl either. Perl programs should use the object interface. In addition to being able to return native Perl wide character strings, "bind_textdomain_codeset" will be emulated if the C library does not provide it. VERSION
1.05. SEE ALSO
gettext(3i), gettext(1), msgfmt(1) AUTHOR
Phillip Vandry <vandry@TZoNE.ORG> perl v5.12.3 2011-05-04 gettext(3pm)
All times are GMT -4. The time now is 06:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy