Sponsored Content
Top Forums Shell Programming and Scripting Rename multiple files in one go Post 303016756 by RudiC on Thursday 3rd of May 2018 06:44:08 AM
Old 05-03-2018
You can't.
In bash you'll need a loop to rename every single file.
You may want to consider the (perl?) rename tool.
This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. 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

2. Shell Programming and Scripting

rename multiple files

Hi, can anyone have a ksh script to rename multiple files (ie to remove .Z extension of the files) can someone correct this? for i in *.Z do var1 = substr($i, 1,at(".Z",$i)-1) mv $i $var1 done Thanks.. Antony (13 Replies)
Discussion started by: antointoronto
13 Replies

3. 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

4. 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

5. UNIX for Dummies Questions & Answers

help with multiple files rename...

Hi everyone, I'm very green in Linux. Please help me to solve my problem. I have thousands of files and I want to change their names. They have naming convection: prefix_date_date+1_suffix.nc prefix: ext-GLORY date_date+1: 20020101_20020102 and two types of suffix: gridV_R20020130 and... (3 Replies)
Discussion started by: makikicindy
3 Replies

6. 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

7. 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

8. 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

9. 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

10. 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
YAZ_SEARCH(3)								 1							     YAZ_SEARCH(3)

yaz_search - Prepares for a search

SYNOPSIS
bool yaz_search (resource $id, string $type, string $query) DESCRIPTION
yaz_search(3) prepares for a search on the given connection. Like yaz_connect(3) this function is non-blocking and only prepares for a search to be executed later when yaz_wait(3) is called. PARAMETERS
o $id - The connection resource returned by yaz_connect(3). o $type - This parameter represents the query type - only "rpn" is supported now in which case the third argument specifies a Type-1 query in prefix query notation. o $query - The RPN query is a textual representation of the Type-1 query as defined by the Z39.50 standard. However, in the text represen- tation as used by YAZ a prefix notation is used, that is the operator precedes the operands. The query string is a sequence of tokens where white space is ignored unless surrounded by double quotes. Tokens beginning with an at-character ( @) are considered operators, otherwise they are treated as search terms. RPN Operators +-----------------------------+---------------------------------------------------+ | Construct | | | | | | | Description | | | | +-----------------------------+---------------------------------------------------+ | | | | @and query1 query2 | | | | | | | intersection of query1 and query2 | | | | | | | | @or query1 query2 | | | | | | | union of query1 and query2 | | | | | | | | @not query1 query2 | | | | | | | query1 and not query2 | | | | | | | | @set name | | | | | | | result set reference | | | | | | | | @attrset set query | | | | | | | specifies attribute-set for query. This con- | | | struction is only allowed once - in the beginning | | | of the whole query | | | | | | | |@attr [set] type=value query | | | | | | | applies attribute to query. The type and value | | | are integers specifying the attribute-type and | | | attribute-value respectively. The set, if given, | | | specifies the attribute-set. | | | | +-----------------------------+---------------------------------------------------+ You can find information about attributes at the Z39.50 Maintenance Agency site. Note If you would like to use a more friendly notation, use the CCL parser - functions yaz_ccl_conf(3) and yaz_ccl_parse(3). RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Query Examples You can search for simple terms, like this: computer The query "knuth donald" This query applies two attributes for the same phrase. The query @and @or a b @not @or c d e (a or b) and ((c or d) not e). Another, more complex, one: @attrset gils @and @attr 1=4 art @attr 1=2000 company art occur in the title (GILS,BIB-1) and in which company occur as Distributor (GILS). PHP Documentation Group YAZ_SEARCH(3)
All times are GMT -4. The time now is 05:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy