|
google site
|
|||||||
| Forums | Register | Blog | Man Pages | Forum Rules | Links | Albums | FAQ | Users | Calendar | Search | Today's Posts | Mark Forums Read |
| Windows & DOS: Issues & Discussions All Windows and DOS questions should go here as well. Discuss UNIX to Windows (Desktop or Server) here! |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hello! I need to rename 400+ xml files. The name of the specific file is contained in a xml tag in the file itself. The batch file should rename all these files with strings found in xml tags. Every xml file has the following tags: Code:
<footnote><para>FILENAME</para></footnote> I have to get the FILENAME from the tag and rename the file with it. May you possibly help me on the matter? My system is Windows XP Professional but Linux help will be much appreciated too! Thanks in advance! |
| Sponsored Links | ||
|
|
|
#2
|
||||
|
||||
|
If Perl is available: Code:
perl -ne'
close ARGV and rename $ARGV, $1
if m|<footnote><para>([^<]*)</para></footnote>|
' xmlfile1 xmlfile2 ... xmlfilen |
|
#3
|
|||
|
|||
|
Another one with awk: Code:
awk -F "[<>]" '
/<footnote><para>/{f=$5;exit}
END{system("mv " FILENAME " " f)}
' fileUse nawk or /usr/xpg4/bin/awk on Solaris. |
|
#4
|
|||
|
|||
|
Thanks a lot! Works great!
Last edited by degoor; 12-31-2009 at 06:01 AM.. Reason: Letter |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Tags |
| file, rename, string, tag, xml |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| extract strings between tags | userscript | Shell Programming and Scripting | 10 | 08-06-2009 11:21 PM |
| renaming files | govindts | Shell Programming and Scripting | 4 | 01-06-2009 08:40 AM |
| Need help renaming files | bbbngowc | UNIX for Dummies Questions & Answers | 5 | 04-23-2008 02:08 PM |
| renaming files | systemsb | UNIX for Dummies Questions & Answers | 3 | 05-25-2006 12:56 AM |
| renaming files | raguramtgr | UNIX for Dummies Questions & Answers | 4 | 09-21-2004 10:57 AM |