qsort is a straightforward CLI tool designed for Linux users who need to sort files easily. With simple commands, users can specify sorting parameters such as file type or last modification date, making file management more efficient. Ideal for anyone looking to streamline their workflow.
qsort is a simple command-line interface (CLI) sorting tool designed specifically for Linux. This utility allows users to efficiently organize files based on various criteria, making it an essential addition for anyone looking to streamline their file management tasks.
-w or --where: Specify the target directory for sorted files. For example, use /home/user/Documents.-t or --type: Determine the type of sorting to apply (e.g., by name, extension, or date of last modification).-d or --df: Define a distinctive feature related to the sorting type, such as a specific file name or modification date format.To sort all .txt files from the current directory to the specified Documents directory, the command would look as follows:
qsort -w /home/user/Documents -t ext --df .txt
This command efficiently moves all .txt files to the target directory provided via the -w flag.
Future enhancements are planned, including an edit mode that will allow users to create and delete files directly through the tool.
Feedback is always appreciated to help improve the project.
No comments yet.
Sign in to be the first to comment.