You can use a for loop with the rename or mv command in the terminal. Here’s a bash example:
bash
bash
Code:
for file in *.pdf; do newname=$(echo "$file" | sed 's/\[Letter\]//; s/\.0N/_N/'); mv "$file" "$newname";done
Statistics: Posted by LouisR4 — 2024-12-12 20:40