Help with modifying a filename


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with modifying a filename
# 8  
Old 11-02-2014
What about

Code:
 mmv

Regards
xabbu
# 9  
Old 11-04-2014
Quote:
Originally Posted by RudiC
That works, but this will be smaller/faster/less consumptive:
Code:
ls -1 XV4_* | awk '{X=$1; sub(/_2014/,"_14",X); print "mv", $1,X}'
or
ls -1 XV4_*| sed  's/\(.*\)/mv \1 \1/;s/_2014/_14/2'

Did you consider to just use (recent) shell builtins
Code:
for FN in ABC_*; do echo mv "$FN" "${FN/_2014/_14}"; done

?
Rudi or anyone can you please explain what XV_4 means? I try to run this as a test and naming the file just like the question. Thanks
# 10  
Old 11-04-2014
Quote:
Originally Posted by BigT
Rudi or anyone can you please explain what XV_4 means? I try to run this as a test and naming the file just like the question. Thanks
Do you mean XV4_*

Any file or directory name that starts with the characters X,V,4, and _, that may or may not have any other characters following after that.
# 11  
Old 11-04-2014
Quote:
Originally Posted by Aia
Do you mean XV4_*

Any file or directory name that starts with the characters X,V,4, and _, that may or may not have any other characters following after that.
Thanks, so since the filename starts with ABC....should I replace XV4_ with ABC_
# 12  
Old 11-04-2014
Quote:
Originally Posted by BigT
Thanks, so since the filename starts with ABC....should I replace XV4_ with ABC_
That should do it
# 13  
Old 11-04-2014
Quote:
Originally Posted by Aia
That should do it
mv -rwxrw-r--. -rwxrw-r--
I keep getting that response...also I subsituted all the instances of X for A...X=$1 I used A=$1
# 14  
Old 11-04-2014
Quote:
Originally Posted by BigT
mv -rwxrw-r--. -rwxrw-r--
I keep getting that response...also I subsituted all the instances of X for A...X=$1 I used A=$1
It is hard to see but that's a dash number one, and not a dash `el'
ls -1 XV4_*
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[Solved] Modifying/Removing Timestamps from a filename

So given filenames of varying lengths, I was wondering how I would remove or modify appended timestamps of the current date DD-MM-YY. So say: test_DD-MM-YY.txt coolbeans_DD-MM-YY.pdf And what I expect the output to be: test.txt coolbeans.pdf Thanks :) (2 Replies)
Discussion started by: sodaboyz
2 Replies

2. Shell Programming and Scripting

Modifying the .bashrc

I have modified the .bashrc. The problem is that when I write a long command, it does not write on the next line but continues to write on the same line. # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for... (1 Reply)
Discussion started by: kristinu
1 Replies

3. Programming

to extract all the part of the filename before a particular word in the filename

Hi All, Thanks in Advance I am working on a shell script. I need some assistance. My code: if then set "subscriber" "promplan" "mapping" "dedicatedaccount" "faflistSub" "faflistAcc" "accumulator"\ "pam_account"; for i in 1 2 3 4 5 6 7 8;... (0 Replies)
Discussion started by: aealexanderraj
0 Replies

4. UNIX for Dummies Questions & Answers

to extract all the part of the filename before a particular word in the filename

Hi All, Thanks in Advance I am working on a shell script. I need some assistance. My Requirement: 1) There are some set of files in a directory like given below OTP_UFSC_20120530000000_acc.csv OTP_UFSC_20120530000000_faf.csv OTP_UFSC_20120530000000_prom.csv... (0 Replies)
Discussion started by: aealexanderraj
0 Replies

5. Post Here to Contact Site Administrators and Moderators

Modifying old post

If I had posted the organisations server name by overlook and people replied to my post. Later on realising that I had shared some info that should not have been, how can I remove or delete such info from my previous posts? (4 Replies)
Discussion started by: mohtashims
4 Replies

6. Shell Programming and Scripting

modifying a row

I want to modify a file by deleting certain characters. The file looks like this: >ctg86 org=S_bayanus] moltype=genomictg] ctgontig=ctg86] RRRRRRRRRRRRRRRRRRRRRRRRRRRRTTTTTTTTTTTTTTTTTTTTTTTYYYYYYYYYYYYYYYYYYYYFFFFFFFFFFFGGGGGGGGGHHHHH >ctg86 org=S_bayanus] moltype=genomictg] ctgontig=ctg86]... (4 Replies)
Discussion started by: phil_heath
4 Replies

7. Shell Programming and Scripting

Filename from splitting files to have the same filename of the original file with counter value

Hi all, I have a list of xml file. I need to split the files to a different files when see the <ko> tag. The list of filename are B20090908.1100-20090908.1200_CDMA=1,NO=2,SITE=3.xml B20090908.1200-20090908.1300_CDMA=1,NO=2,SITE=3.xml B20090908.1300-20090908.1400_CDMA=1,NO=2,SITE=3.xml ... (3 Replies)
Discussion started by: natalie23
3 Replies

8. Shell Programming and Scripting

rename multiple filename.45267.txt to >> filename.txt

i have several thousand files and in subdirs that are named file.46634.txt budget.75346.pdf etc i want to remove the number but retain the extension. it is always a 5 digit. thanks. (6 Replies)
Discussion started by: jason7
6 Replies

9. Shell Programming and Scripting

gzcat into awk and then change FILENAME and process new FILENAME

I am trying to write a script that prompts users for date and time, then process the gzip file into awk. During the ksh part of the script another file is created and needs to be processed with a different set of pattern matches then I need to combine the two in the end. I'm stuck at the part... (6 Replies)
Discussion started by: timj123
6 Replies

10. UNIX for Dummies Questions & Answers

shortcut for tar cvf - [filename] | gzip > [filename].tar.gz

i'd like to have an alias (or something similar) where i can type a command like "archive" and a filename and have it tar and gzip the file, so... $ archive filename results in filename.tar.gz...do i have to write a script to do this? (4 Replies)
Discussion started by: bcamp1973
4 Replies
Login or Register to Ask a Question