@raphaelle
You can rename all files in the current directory in Linux using a simple command in the terminal. Here's how you can do it:
1
|
cd /path/to/directory |
1
|
rename 's/.txt$/.backup/' *.txt |
In the above command:
You can modify the pattern and file extension to meet your renaming requirements.
Make sure to double-check the new filenames after running the command to ensure they are as expected.