Rename multiple podcast files (cpm


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Rename multiple podcast files (cpm
# 1  
Old 10-08-2012
Rename multiple podcast files (cpm

In a directory with several podcast files like this, I am looking to concatenate the feed name and title:

Code:
#
$ cat 1349346290243.meta
#Thu Oct 04 03:25:06 PDT 2012
duration=90201
title=Some Multitasking Is More Taxing
mimetype=audio/mp3
feedName=60 second psych
url=http\://www.pheedo.com/e/fdf1f9845a3c8c5dc08cf5cbf4de0587/sa_p_podcast_120728.mp3
size=0

to create a file named:

Code:
60_second_psych-Some_Multitasking_Is_More_Taxing.meta

Appreciate any help!
# 2  
Old 10-08-2012
I think this will work for you:

Code:
for f in *meta
do
    dname=$(    awk -F = '
                /^title/ { $1 = ""; gsub( " ", "_" ); title = $0; next; }
                /^feedName/ { $1 = ""; gsub( "^ ", "" ); gsub( " ", "_" );  fn = $0; next; }
                END { print fn title } ' $f
    )
    echo mv $f $dname.meta
done

As it is, it will just print the move commands out. If they look acceptable, then remove the 'echo' to actually rename the files. It allows the title and feed name to appear in any order in the meta files.
# 3  
Old 10-08-2012
Code:
for fname in *.meta
do
    declare -a arr=( $(awk -F'='  '/title/ || /feedName/ {printf("'%s' ", $2)} ' | tr -s ' ' '_ '  ) )
    echo  "$fname"  "${arr[1]}-${arr[0]}.meta"
    #  mv "$fname"  "${arr[1]}-${arr[0]}.meta"
done

uncomment the # mv line of code after you run it once: i.e., check the validity of the code

Try that
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

SBATCH trinity for multiple files and rename/move the output files

Hey guys, I have wrote the following script to apply a module named "trinity" on my files. (it takes two input files and spit a trinity.fasta as output) #!/bin/bash -l #SBATCH -p node #SBATCH -A <projectID> #SBATCH -n 16 #SBATCH -t 7-00:00:00 #SBATCH --mem=128GB #SBATCH --mail-type=ALL... (1 Reply)
Discussion started by: @man
1 Replies

2. Shell Programming and Scripting

Rename a multiple files

I have multiple files in folder which i want to rename. hence I am using the below command in my script by I get an error: export XXX_LOG_DIR="${LOG_DIR}/${XXX_HOST}/xxx/${REPORT_DATE}" mv $XXX_LOG_DIR/*.audit.gz $XXX_LOG_DIR/*.audit.log.gz But I get the below error: mv: target... (5 Replies)
Discussion started by: karan8810
5 Replies

3. Shell Programming and Scripting

How to rename multiple files at one go?

Hi, I have hundreds of files with XXX in their file name and I want to rename all of them with YYY in place of XXX. for ex: $ ls -1 123XXX789 345XXX678 Output $ ls -1 123YYY789 345YYY678 I know we can loop in each file and sed to replace and rename each file but ren *XXX* *YYY*... (4 Replies)
Discussion started by: reddyr
4 Replies

4. Shell Programming and Scripting

Rename multiple files

Hi, In my directory I have many files, for e.g. file_123 file_124 file_125 file_126 file_127 Instead of renaming these files one by one, I would like to rename them at a same time using same command... they should appear like 123 124 125 126 127 What command(awk or ls or... (3 Replies)
Discussion started by: juzz4fun
3 Replies

5. Shell Programming and Scripting

Rename multiple files

hello: I have multiple files with names like: somestring_y2010m01d01 somestring_y2010m01d02 .......... somestring_y2010m12d31 How... (4 Replies)
Discussion started by: sylcam
4 Replies

6. Shell Programming and Scripting

Rename the multiple files

Hi I need to reanme the multiple file using unix script I have multiple file like: sample_YYYYMMDD.xls test new_YYYYMMDD.xls simple_YYYYMMDD.xls I need to rename this file sample.xls testnew.xls SIMPLE.xls thanks (8 Replies)
Discussion started by: murari83.ds
8 Replies

7. UNIX for Dummies Questions & Answers

How to rename multiple files

Hi all, I have some files like: pickup.0000043200.t001.t001.data pickup.0000043200.t001.t002.data pickup.0000043200.t002.t001.data pickup.0000043200.t002.t002.data pickup.0000043200.t003.t001.data pickup.0000043200.t003.t002.data I need to rename these files to ... (4 Replies)
Discussion started by: a_dor8
4 Replies

8. Shell Programming and Scripting

rename multiple files

Hi all, I have some files like: pickup.0000043200.t001.t001.data pickup.0000043200.t001.t002.data pickup.0000043200.t002.t001.data pickup.0000043200.t002.t002.data pickup.0000043200.t003.t001.data pickup.0000043200.t003.t002.data I need to rename these files to ... (3 Replies)
Discussion started by: a_dor8
3 Replies

9. Shell Programming and Scripting

now to rename multiple files

I have several hundred files in one directory which I need to move to another directory with the new extension, for example: /bb/data/rptmgr* are in the source directory need to be moved to /bb/data55/rptmgr*.new Is there an efficient way to do it? Thanks -A (4 Replies)
Discussion started by: aoussenko
4 Replies

10. UNIX for Dummies Questions & Answers

Rename multiple files

Hello, I want to rename multiple files at a time and I don't know how to do it. I have various ".mp3" files, like "band name - music name.mp3" and I want to remove the "band name" from all files. Anybody knows how to do it using shell script or sed or even perl? Thanks (7 Replies)
Discussion started by: luiz_fer10
7 Replies
Login or Register to Ask a Question