Dext (Directories by Extensions) is a script that moves (or copies) files of the same extension into a folder.
The main goal of this script is to make sense out of large number of messy and unorganized files by sorting them (according to their file extensions) in folders.
Dext moves files by default unless copy option is provided (-c).
- curl (only for installation)
- Debian
sudo apt install curl
- Arch
sudo pacman -S curl
- Debian
- sed
- Debian
sudo apt install sed
- Arch
sudo pacman -S sed
- Debian
- Using curl
curl https://raw.githubusercontent.com/AfzGit/dext/main/dext --output dext
chmod a+x dext
sudo mv dext /usr/bin/
-
USAGE:
- dext [OPTIONS]
- dext [OPTIONS] DIRECTORY
-
OPTIONS:
- -h Show this help message
- -u Show total Unique extension
- -v Verbose mode
- -i Interactive mode
- -c Copy mode (default is Move)
- -d Dry run
- -f Force move/copy files (no prompts)
- dext ~/Downloads/
- Move files into directories based on file extensions
- dext -i -v -c ~/Downloads/
- Enable Interactive and Verbose Copy
- dext -f ~/Downloads/
- Force move
- dext -f -c ~/Downloads/
- Force copy
- dext -d ~/Downloads/
- Dry run
Note: I am not responsible for any damages you encounter using this script