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: 3. Open the xxx.sh file: 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! You may also be interested in:
|
<<: Vue uses v-model to encapsulate the entire process of el-pagination components
>>: Detailed graphic tutorial on installing and uninstalling Tomcat8 on Linux
Table of contents 1. Overview 1.1 Definition 1.2 ...
Since enabling https access for the entire site, ...
Code: <input type="text" class="...
Mysql is a mainstream open source relational data...
Table of contents 1. Introduction 2. GitHub 3. Ba...
Table of contents Basic instructions and usage An...
Preface Recently, I encountered a requirement. Du...
1. Each function is an object and occupies memory...
The Golden Rule No matter how many people are wor...
I slept late yesterday and was awake the whole da...
This article example shares the specific code of ...
This article uses examples to describe the creati...
Table of contents How to set cookies Disadvantage...
In react-router, the jump in the component can be...
margin:auto; + position: absolute; up, down, left...