{"id":20431498,"url":"https://github.com/devyatsu/mucli","last_synced_at":"2026-04-15T16:34:02.265Z","repository":{"id":182179160,"uuid":"667641730","full_name":"DevYatsu/mucli","owner":"DevYatsu","description":"mucli (Multi Use Command Line Interface) is a tool for file encryption/decryption, secure passwords storing and more...","archived":false,"fork":false,"pushed_at":"2023-07-29T10:56:45.000Z","size":61855,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T05:44:57.090Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DevYatsu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-18T01:42:12.000Z","updated_at":"2023-07-22T21:56:05.000Z","dependencies_parsed_at":"2024-11-15T08:12:04.736Z","dependency_job_id":"7b7ad328-e1ea-4a00-bb67-44cc4c755859","html_url":"https://github.com/DevYatsu/mucli","commit_stats":null,"previous_names":["devyatsu/multi_use_cli","devyatsu/mucli"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/DevYatsu/mucli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Fmucli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Fmucli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Fmucli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Fmucli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DevYatsu","download_url":"https://codeload.github.com/DevYatsu/mucli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevYatsu%2Fmucli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31849876,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T08:12:01.765Z","updated_at":"2026-04-15T16:34:02.249Z","avatar_url":"https://github.com/DevYatsu.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mucli (Multi Use Command Line Interface)\n\nmucli is a versatile command-line tool offering various functionalities, including file encryption/decryption, secure password storage, and more. It provides a user-friendly interface to perform different tasks efficiently.\n\n## Installation\n\nTo use mucli, follow these steps:\n\n- [Download the latest](../../releases) release for your operating system.\n- Follow instructions in the release section\n\n## Usage\n\nmucli supports several commands and options to cater to your needs. Commands can sometimes need admin access to be executed. Here are the available commands:\n\n### Set Password\n\nCommand to set a security password to access sensitive data.\n\n`mucli password --flag`\n\n```bash\n# Set a password for the first time\nmucli password -i [optional new_password]\n\n# Change the existing password\nmucli password --change [optional current_password]\n\n# Reset the password by answering a set of questions (future release)\nmucli password --reset\n\n# Add and remove questions you will have to answer to reset your password\nmucli password --modifyQ [optional current_password]\n```\n\n### Encrypt\n\nCommand to encrypt a specified file and place the output file in the specified directory.\n\n```bash\n# Encrypt the file and place the output in the specified directory\nmucli encrypt /path/to/source_file /path/to/output_dir\n\n# Encrypt the file and place the output in the current directory\nmucli encrypt -c /path/to/source_file\n\n# Update the encryption key of the file\nmucli encrypt -u /path/to/source_file\n\n# Update encryption key version\nmucli encrypt -u\n\n# Replace the file by its encrypted version\nmucli encrypt -s /path/to/source_file\n\n# Encrypt the file 5 times\nmucli encrypt -t 5 /path/to/source_file\n```\n\n### Decrypt\n\nCommand to decrypt a specified file and place the output file in the specified directory.\n\n```bash\n# Decrypt the file and place the output in the specified directory\nmucli decrypt /path/to/encrypted_file /path/to/output_dir\n\n# Decrypt the file and place the output in the current directory\nmucli decrypt -c /path/to/encrypted_file\n\n# Replace the file by its decrypted version\nmucli decrypt -s /path/to/encrypted_file\n\n# Decrypt the target file until it's totally decrypted,\n# useful when crypted several times\nmucli decrypt -e /path/to/encrypted_file\n```\n\n### Rename\n\nCommand to rename a file.\n\n```bash\nmucli rename [FILEPATH] [NAME]\n```\n\n### Copy\n\nCommand to copy a file's content into another existing or non-existing file or into a directory.\n\n```bash\nmucli copy [FILEPATH] [TARGET]\n```\n\n### Move\n\nCommand to move a file into a directory.\n\n```bash\nmucli move [FILEPATH] [DIR]\n```\n\n### Zip\n\nCommand to compress the specified file/folder and place the output zip file in the specified directory.\n\n```bash\n# Compress the file/folder and place the output in the same directory as the source\nmucli zip [PATH]\n\n# Compress the file/folder and place the output in the specified directory\nmucli zip [PATH] [OUTPUTDIR]\n\n# Compress the file/folder and place the output in the current directory\nmucli zip -c [PATH]\n\n# Compress with a specified compression level (0 to 9)\nmucli zip -l [LEVEL] [PATH]\n```\n\n### Unzip\n\nCommand to extract the specified zip file and place the output file/folder in the specified directory.\n\n```bash\n# Compress the file/folder and place the output in the same directory as the source\nmucli zip [PATH]\n\n# Compress the file/folder and place the output in the specified directory\nmucli zip [PATH] [OUTPUTDIR]\n\n# Compress the file/folder and place the output in the current directory\nmucli zip -c [PATH]\n```\n\n### Shell\n\nCommand to execute a shell script.\n\n```bash\nmucli shell [FILEPATH]\n```\n\n### Qrcode\n\nCommand to generate a qr-code for a given string/url. \n\n```bash\nmucli qrcode [STRING]\nmucli qrcode \"https://github.com/DevYatsu/mucli/\"\n```\n\n### Antivirus\n\nCommand to check for malwares in a given file, using the virustotal API.\n\n```bash\nmucli antivirus [FILEPATH]\n```\n\nThe `antivirus` command returns:\n\n- Malicious threats detected: Number of engine reports indicating that the file is malicious.\n- Suspicious threats detected: Number of engine reports indicating that the file is suspicious.\n\n### Timer\n\nCommand to use a simple timer.\n\n```bash\nmucli timer\n```\n\n### Update (still in development)\n\nCommand to check if a new update of mucli is available (coming soon).\n\n```bash\nmucli update\n```\n\n## Ideas of commands to implement in the future\n\n- \"dictionary\": Develop a command-line dictionary tool to look up word definitions, synonyms, and antonyms.\n- \"translator\": Implement a command to translate text between different languages using popular translation APIs.\n- \"random\": Create a command to generate random numbers, passwords, or strings.\n- \"calculator\": Implement a command-line calculator capable of performing basic arithmetic and advanced mathematical operations.\n- \"weather\": Implement a command to display weather forecasts and current conditions for a specified location.\n\n## Feedback and Contributions\n\nWe welcome your feedback and contributions to improve mucli. If you encounter any issues or have suggestions for new features, please feel free to open an [issue](../../issues) on our GitHub repository.\n\nHappy command-line multitasking with mucli!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevyatsu%2Fmucli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevyatsu%2Fmucli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevyatsu%2Fmucli/lists"}