{"id":17383058,"url":"https://github.com/edsonsbj/rclone-aio","last_synced_at":"2025-08-17T20:10:55.772Z","repository":{"id":241291818,"uuid":"806520529","full_name":"edsonsbj/Rclone-AIO","owner":"edsonsbj","description":"This Repository contains a shell script that executes various functions using the Rclone tool ","archived":false,"fork":false,"pushed_at":"2024-05-27T16:11:19.000Z","size":26,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T20:49:12.065Z","etag":null,"topics":["rclone","rclone-backup","rclone-sync","shell-scripts"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edsonsbj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-05-27T11:01:30.000Z","updated_at":"2025-03-23T18:17:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"72c71c82-f067-461c-9b8c-8b224a060716","html_url":"https://github.com/edsonsbj/Rclone-AIO","commit_stats":null,"previous_names":["edsonsbj/rclone-aio"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/edsonsbj/Rclone-AIO","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edsonsbj%2FRclone-AIO","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edsonsbj%2FRclone-AIO/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edsonsbj%2FRclone-AIO/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edsonsbj%2FRclone-AIO/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edsonsbj","download_url":"https://codeload.github.com/edsonsbj/Rclone-AIO/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edsonsbj%2FRclone-AIO/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270899582,"owners_count":24664720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["rclone","rclone-backup","rclone-sync","shell-scripts"],"created_at":"2024-10-16T07:40:28.369Z","updated_at":"2025-08-17T20:10:55.736Z","avatar_url":"https://github.com/edsonsbj.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rclone AIO Script\n\nThis is a bash script to facilitate the use of rclone commands with various options and additional features. It supports copying, synchronizing, moving, deleting files, removing empty directories and wiping the remote. The script also supports adding additional rclone filters and flags.\n\n## Requisitos\n\n- [Rclone](https://rclone.org/)\n\n## Instalação\n\n1. Clone the repository or download the script.\n2. Make sure the script has execute permission:\n    ```bash\n    chmod +x ./Rclone-AIO.sh \n    ```\n## Use\n\nDisplay the help menu\n\n```bash\n./Rclone-AIO.sh -h\n```\n\n```bash\nUsage: ./Rclone-AIO.sh [options] source destination [ -e flags_do_rclone]\n\nOptions:\n  -c (Copy)\t Copy files from source to destination, ignoring identical files.\n  -s (Sync) \t Make the source and destination identical, modifying only the destination.\n  -m (Move)\t Move files from source to destination.\n  -d (delete)\t Remove files in the path.\n  -r (rmdirs)\t Remove empty directories in the path.\n  -C (cleanup) Clean up the remote if possible. Empty the recycle garbage can or delete old versions of files. Not supported by all remotes.\n  -n \t\t Adds the --dry-run flag to rclone.\n  -f file\t Adds the --filter-from flag with the specified file to rclone.\n  -e \t\t Adds extra flags to the rclone command.\n\nExamples:\n  ./Rclone-AIO.sh -c 'local:path/origin' 'cloud:path/destination'\n  ./Rclone-AIO.sh -c 'ftp:/path/origin' 'cloud:path/destination' -e --max-age=7d\n  ./Rclone-AIO.sh -c 'local:path/origin' 'cloud:path/destination' -f '/path/to/filter.lst'\n  ./Rclone-AIO.sh -s 'local:path/origin' 'cloud:path/destination'\n  ./Rclone-AIO.sh -s 'ftp:/path/origin' 'cloud:path/destination' -e --max-age=7d\n  ./Rclone-AIO.sh -n -s 'local:path/origin' 'cloud:path/destination' -f '/path/to/filter.lst'\n  ./Rclone-AIO.sh -n -s 'local:path/origin' 'cloud:path/destination' -f '/path/to/filter.lst' -e --max-age=7d\n  ./Rclone-AIO.sh -C 'cloud:/'\n  ./Rclone-AIO.sh -d 'cloud:path/destination'\n  ./Rclone-AIO.sh -r 'cloud:path/destination'\n\n```\n\n### Options\n\n - `-c (Copy)`:\tCopy files from source to destination, ignoring identical files.\n - `-s (Sync)`: Make the source and destination identical, modifying only the destination.\n - `-m (Move)`:\tMove files from source to destination.\n - `-d (delete)`: Remove files in the path.\n - `-r (rmdirs)`: Remove empty directories in the path.\n - `-C (cleanup)`: Clean up the remote if possible. Empty the recycle garbage can or delete old versions of files. Not supported by all remotes.\n - `-n`: Adds the --dry-run flag to rclone.\n - `-f file`: Adds the --filter-from flag with the specified file to rclone.\n - `-e`: Adds extra flags to the rclone command.\n\n### Examples\n\n#### Copy files or folders\n\n```bash\n./Rclone-AIO.sh -c 'local:path/origin' 'cloud:path/destination'\n```\n\n#### Synchronize files or folders\n\n```bash\n./Rclone-AIO.sh -s 'local:path/origin' 'cloud:path/destination'\n```\n\n#### Move files or folders\n\n```bash\n./Rclone-AIO.sh -m 'local:path/origin' 'cloud:path/destination'\n```\n\n#### Dekete files or folders\n\n```bash\n./Rclone-AIO.sh -d 'cloud:path/destination'\n```\n\n#### Remove empty directories\n\n```bash\n./Rclone-AIO.sh -r 'cloud:path/destination'\n```\n\n#### Cleaning the remote control\n\n```bash\n./Rclone-AIO.sh -C 'cloud:path/destination'\n```\n\n#### Copy files with filter\n\n- Using a filter file would be like adding exclusion patterns to the rclone include command.\n- To find out more, see the rclone documentation [Rclone](https://rclone.org/filtering/).\n  \n```bash\n./Rclone-AIO.sh -c 'local:path/origin' 'cloud:path/destination' -f '/path/to/filter.lst'\n```\n\n#### Synchronize with additional flags\n\n- The script has already been designed with support for some flags if you want to add others you can do so by following this example\n\n```bash\n./Rclone-AIO.sh -s 'ftp:/path/origin' 'cloud:path/destination' -e --max-age=7d\n```\n\n## Contribution\n\nFeel free to contribute by sending issues and pull requests. All contributions are welcome!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedsonsbj%2Frclone-aio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedsonsbj%2Frclone-aio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedsonsbj%2Frclone-aio/lists"}