Rename files based on simple text file

 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Rename files based on simple text file
# 8  
Old 01-20-2017
Quote:
Originally Posted by Corona688
Does this mean you do or don't want leading zeroes?
Leading zeroes is the preffered chioce for 1-9. Sorry for confusing things.

I also do realize now that'-' is probably a very bad separation character since it can be part of song titles. That's why I used ^t (tab) initially. I think this will be the best chioce, I can easily convert the separation character prior to generating the text files.
# 9  
Old 01-20-2017
Does this mean you want tabs in the filenames? That is possible but will make them somewhat difficult to type.
# 10  
Old 01-20-2017
Quote:
Originally Posted by Oortone
.
.
.
The filenames looks like this:
03 ELO---Happy-Haunting

But I would prefer:
03 - ELO - Happy Haunting
If there are three dashes, there have been three spaces. Check / edit the input file.


Quote:
Also, it seems like some folders have their files numbered like this:
01 fsfsdf.wav
02 dfgh ert.wav
...
11 abc def.wav

Leading zeroes below ten. Where do I modify the script for this?

Sorry? Let us look back into post#1:


Quote:
Originally Posted by Oortone
.
.
.
I want files to look like this:
Code:
01 - Some -Data
02 - Other - Info & Stuff
03 - Yet - More Data
04 - To the - End

.
.
.
# 11  
Old 01-20-2017
Quote:
Originally Posted by Corona688
Does this mean you want tabs in the filenames? That is possible but will make them somewhat difficult to type.
Thank's for helping out.

You're right. That's probably not a good idea. I guess some other common separation character that's not usually part of things like songtitles would be better. The data from the filenames whill later be extracted and converted to metadata in the file. I believe I can use most characters like for instance '#' or '=' for separation purposes.

I tried your script but I can not make it work. I get:
Code:
./script.sh: line 8: [: missing `]'

Also I'm not shure what filenames should be replaced with. Filetitles I guess is the file with the requested names. But there is no file with the current filenames. I tried to create on using mv *.wav > filenames.txt and then run the script but that didn't work
# 12  
Old 01-20-2017
I suggest @ or %, which have no special meaning by themselves in most shells.
# 13  
Old 01-20-2017
Quote:
Originally Posted by RudiC

Sorry? Let us look back into post#1:
Yes, that's my prefered output. But the input may be both with and without leading zeroes but maybe that's not a problem? It works in both cases?

Regarding separation character, Corona688 helped me realize '-' was a bad choice so unfortunately it got a bit confused.

Generally your small script works but for me to tweak it I need to understand what this part of the code does:
Code:
${NZ#${NZ%??}} ${NFN// /-}

Also, this part, which I guess has to do with leading zeroes is a bit unclear to me:
Code:
NZ="0$Nr"

# 14  
Old 01-20-2017
Yes, NZ="0$Nr" adds a leading zero. 1 --> 01; 12 --> 012

${NZ#${NZ%??}} uses shell's "parameter expansion: remove prefix / suffix pattern" to chop off leading characters preserving the last two.

${NFN// /-} uses "parameter expansion: pattern substitution" to replace all spaces in a string with dashes. You could try to apply it repeatedly to reduce / remove the multiple space occurrences.
See e.g. man bash for reference of the two builtins.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Rename files based on name in text file

Hello, I have a text file "file.list" with the contents below. file1 filename1 file2 filename2 file3 filename3 file1, file2 and file3 are files existing in the same directory as the text file file.list. I want to rename file1 to filename1, file2 to filename2, as show in the text... (1 Reply)
Discussion started by: james2009
1 Replies

2. UNIX for Dummies Questions & Answers

Rename files based on a list

Hi, I have a directory with a lot of files like this: a.bam b.bam c.bam I like to rename these files based on a list where the name of the files in the first column will be replasced by the names in the second column. Here is my list which is a tab-delimited text file: a x b y c ... (4 Replies)
Discussion started by: a_bahreini
4 Replies

3. Shell Programming and Scripting

Loop through the dir and Rename zip files and their underlying text file.

I have files in the ABC_YYYYMMDD.zip format under a directory. Each zip file contains A text file in the ABC_YYYYMMDD.txt format. I am trying to create a script that will Rename the zip files and their underlying text file replacing the datepart in them with . For eg: in the case of... (1 Reply)
Discussion started by: bash987
1 Replies

4. Shell Programming and Scripting

Extracting lines from text files in folder based on the numbers in another file

Hello, I have a file ff.txt that looks as follows *ABNA.txt 356 24 36 112 *AC24.txt 457 458 321 2 ABNA.txt and AC24.txt are the files in the folder named foo1. Based on the numbers in the ff.txt file, I want to extract the lines from the corresponding files in the foo1 folder and... (2 Replies)
Discussion started by: mohamad
2 Replies

5. UNIX for Dummies Questions & Answers

rename files based on their respective directory name

I have a number of files in directories labeled like this: /Data/tr_gray/tr_DTI/dti_FA.nii.gz (the brackets here represent a range of number that the files are labeled with) I need to rename each dti_FA.nii.gz file according to the name of the folder it resides in. For example, the file ... (3 Replies)
Discussion started by: tk0034
3 Replies

6. Shell Programming and Scripting

rename files Ax based on strings found in files Bx

Hi, I'm not very experienced in shell scripting and that's probably why I came across the following problem: I do have several hundred pairs of text files (PF00x.spl and PF00x.shd) where the first file (PF00x.spl) needs to be renamed according a string that is included in the second file... (12 Replies)
Discussion started by: inCH
12 Replies

7. Shell Programming and Scripting

Bash snippet to find files based on a text file?

Evening all. I'm having a terrible time with a script I've been working on for a few days now... Say I have a text file named top10song.tm2, with the following in it: kernkraft 400 Imagine i kissed a girl Thriller animals hallelujah paint it black psychosocial Oi to the world... (14 Replies)
Discussion started by: DJ Charlie
14 Replies

8. UNIX for Dummies Questions & Answers

extracting text and reusing the text to rename file

Hi, I have some ps files where I want to ectract/copy a certain number from and use that number to rename the ps file. eg: 'file.ps' contains following text: 14 (09 01 932688 0)t the text can be variable, the only fixed element is the '14 ('. The problem is that the fixed element can appear... (7 Replies)
Discussion started by: JohnDS
7 Replies

9. Shell Programming and Scripting

splitting files based on text in the file

I need to split a file based on certain context inside the file. Is there a unix command that can do this? I have looked into split and csplit but it does not seem like those would work because I need to split this file based on certain text. The file has multiple records and I need to split this... (1 Reply)
Discussion started by: matrix1067
1 Replies

10. Shell Programming and Scripting

Rename files/directories based on their name

i have hundreds of directories that have to be renamed. the directory structure is fairly uniform which makes the scripting a little simpler. suppose i have many directories like this */*/*/*abc* (in other words i have similar directory names 3 dirs deep that all contain the pattern abc in... (8 Replies)
Discussion started by: quantumechanix
8 Replies
Login or Register to Ask a Question