This repository contains three Bash scripts designed to help with various file management tasks. Each script has a specific purpose and comes with detailed usage instructions.
-
File Extension Renamer Script (
file_extension.sh
)-
Description: This script renames files in the current directory by adding the appropriate extension based on the file type, even if the files are missing their extensions.
-
Usage:
./file_extension.sh
-
-
Shorten Filenames Script (
shorten_filenames.sh
)- Description: This script allows you to shorten filenames by removing a specified number of characters from the beginning or the end of the filenames in the current directory, without affecting their extensions.
- Usage:
./shorten_filenames.sh -d <inicio|fim> -n <quantidade>
- Manual: Shorten Filenames Script Manual
-
Remove Words from Filenames Script (
remove_words.sh
)- Description: This script renames files in the current directory by removing specified words from their filenames.
- Usage:
./remove_words.sh word1 [word2 ... wordN]
- Manual: Remove Words from Filenames Script Manual