rename more files special case


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers rename more files special case
# 8  
Old 09-25-2008
hello all brothers

if i have a spaces in the file name like this

like this

werks - king It Look Great 4.part01
werks - king It Look Great 4.part02
werks - king It Look Great 4.part03
werks - king It Look Great 4.part04

and i need it this

stat-king-It-Look-Great-4.part01
stat-king-It-Look-Great-4.part02
stat-king-It-Look-Great-4.part03
stat-king-It-Look-Great-4.part04
# 9  
Old 09-25-2008
i am trying
# 10  
Old 09-25-2008
Code:
# ls -1 werks*
werks - king It Look Great 4.part01
werks - king It Look Great 4.part02

# filerenamer.py -p "werks - " -e "stat-"   "werks*"
# filerenamer.py -p " " -e "-"  "stat*"

# ls stat*
stat-king-It-Look-Great-4.part01  stat-king-It-Look-Great-4.part02

# 11  
Old 09-25-2008
for this problem u can use:
ls -1 werks*part??|awk '{print "stat""-"$3"-"$4"-"$5"-"$6"-"$7}'

Last edited by RahulJoshi; 09-25-2008 at 10:41 PM..
# 12  
Old 09-25-2008
can you give me the full command for this
# 13  
Old 09-26-2008
try this
Code:
for i in wreks*; do
newfile=`echo "$i"|sed -e 's/^werks - /stat-/g' -e 's/ /-/g'`
mv "$i" "$newfile"
done

# 14  
Old 09-26-2008
Quote:
Originally Posted by vidyadhar85
try this
Code:
for i in wreks*; do
newfile=`echo "$i"|sed -e 's/^werks - /stat-/g' -e 's/ /-/g'`
mv "$i" "$newfile"
done


Good Command line

really good
thanks for you
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Rename File Name with Special Characters

I am trying to rename files with spaces and other characters and not able to be successful. FileNames: UPLOAD REFERENCE.xls UPLOAD MASS REFERENCE.XLS find /UPLOAD REFERENCE/ -depth -type f -name "* *" -exec rename " " "_" "{}" ";" The above one is successful to replace spaces... (1 Reply)
Discussion started by: eskay
1 Replies

2. Shell Programming and Scripting

Special case to skip function in bash menu

In the bash menu below if the variant that is inputted is in the format NM_004004.3:c.274G>T the below works perfectly. My question is if the variant inputted isNM_004004.3:-c.274G>T or NM_004004.3:+c.274G>T then the code as is will throw an error due to a biological issue. Is it possible to to... (1 Reply)
Discussion started by: cmccabe
1 Replies

3. Shell Programming and Scripting

awk special parse case

I have a special case that awk could be used but I do not have the skill. Trying to create a final output file (indel_parse.txt) that is created from using some information from each of the two files (attached). parse rules: The header is skipped FNR>1 1. 4 zeros after the NC_ (not... (2 Replies)
Discussion started by: cmccabe
2 Replies

4. Shell Programming and Scripting

Rename file of special type

HI ! all till date I usually rename file like this n=201108290000 for file in *.nc; do file_name=M.m.1.1.1.$n.ready n=$(( $n+1 )) mv $file $file_name donebut in this case I have to rename file depending on basename of file, when I list files results like this, if there is leap... (6 Replies)
Discussion started by: Akshay Hegde
6 Replies

5. Shell Programming and Scripting

Row to columns - special case

Hi. Let me start saying that i am kinda new to bash, and have few skills in programming. I've been advised to use bash to manipulate large .csv files. I've been able to do some data filtering using fors, grep and tail commands. That was kinda easy seeing examples. But now i need to do some hard... (1 Reply)
Discussion started by: jmarmitt
1 Replies

6. Shell Programming and Scripting

Check input for lenght, special characters and letter case

I made menu script for users so they can run other script without going in shell just from menu. But i must control their input. These are criteria: Input must have 4 signs First two signs are always lower case letters Input shall not have some special signs just letters and numbers ... (1 Reply)
Discussion started by: waso
1 Replies

7. Shell Programming and Scripting

Rename files and directories with special characters

Hello guys, I was looking for a shell script that removes all the special characters from the files and the subdirectories recursively. I could not locate it any more. Dose any body have a similar script that dose that? Thanks for the help. AV (0 Replies)
Discussion started by: avatar_007
0 Replies

8. UNIX for Dummies Questions & Answers

Shell script to rename or change file extension case.

I searched the forum, but there was different type of rename. Hello. I have files in folder. Like: xxxxxxxx1.html or xxxxxxxx2.txt or xxxxxxxx3.tar.gz and how to rename or change file extension case to xxxxxxxx1.htm or xxxxxxx2.TXT or (5 Replies)
Discussion started by: Sheldon
5 Replies

9. SCO

Avoiding duplicates with some special case

Hi Gurus, I had a question regarding avoiding duplicates.i have a file abc.txt abc.txt ------- READER_1_1_1> HIER_28056 XML Reader: Error occurred while parsing:; line number ; column number READER_1_3_1> Sun Mar 23 23:52:48 2008 READER_1_3_1> HIER_28056 XML Reader: Error occurred while... (0 Replies)
Discussion started by: pssandeep
0 Replies

10. UNIX for Dummies Questions & Answers

how to delete whole directory in special case

Hello, Today, as a root user, i want to copy recursively all files and diretories in a source directory to a destination directory using the following command, cp -r /home/smith/* /home/bob/ However, I carelessly missed the '*' out when I executed the command. Now, i noticed a... (1 Reply)
Discussion started by: cy163
1 Replies
Login or Register to Ask a Question