How to add file prefixes in batches in Linux

How to add file prefixes in batches in Linux

You need to add "gt_" in front of the file names of all txt files in the folder;

That is, the original file "xxx.txt" becomes "gt_xxx.txt":

The script I searched online is as follows:

for i in `ls`;
do mv -f $i 'echo "gt_"$i`;
done

1. First, switch the Linux command line to the directory where you need to modify the file name:

cd destination directory

2. Create a new sh file in this directory:

touch xxx.sh

3. Open the xxx.sh file:

vim xxx.sh

3. Copy the script content just now to the sh file, save and exit

Edit sh file: Shift+I

Save and exit after pasting: Ctrl+Alt +D to exit the editing state, then enter :wq! to exit

Execute sh file: ./xxx.sh

I have never come across Linux commands before, and now I need to use some of them. I am taking this note as a reminder~~~

ps: Batch change file prefix command under linux

for f in * ; do mv -- "$f" "PRE_$f" ; done

Summarize

The above is the operation method of adding file prefixes in batches in Linux introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to use shell script to batch add watermarks to pictures in a specified folder under Linux

<<:  Vue uses v-model to encapsulate the entire process of el-pagination components

>>:  Detailed graphic tutorial on installing and uninstalling Tomcat8 on Linux

Recommend

Use Docker Compose to quickly deploy ELK (tested and effective)

Table of contents 1. Overview 1.1 Definition 1.2 ...

Solution for using Baidu share on Https page

Since enabling https access for the entire site, ...

MySQL concurrency control principle knowledge points

Mysql is a mainstream open source relational data...

Several ways to manually implement HMR in webpack

Table of contents 1. Introduction 2. GitHub 3. Ba...

Implementation of Element-ui Layout (Row and Col components)

Table of contents Basic instructions and usage An...

Detailed explanation of js event delegation

1. Each function is an object and occupies memory...

HTML5+CSS3 coding standards

The Golden Rule No matter how many people are wor...

vue-pdf realizes online file preview

This article example shares the specific code of ...

Vue keeps the user logged in (various token storage methods)

Table of contents How to set cookies Disadvantage...

How to use history redirection in React Router

In react-router, the jump in the component can be...