xferctl is an open-source CLI tool designed for seamless file transfers between AWS S3 buckets, supporting both same-account and cross-account operations. Built for reliability, extensibility, and community-driven development, xferctl aims to simplify cloud storage workflows for DevOps, data engineers, and cloud architects.
- AWS S3 Support: Copy files and folders within the same AWS account or across different accounts.
- Cross-Account Transfers: Securely handle cross-account authentication and permissions.
- CLI Simplicity: Easy-to-use command line interface for quick operations.
- Extensible Design: Built for future support of other cloud providers and storage backends.
- Open Source & Apache-2.0 Licensed: Contributions welcome from the global community.
- Python 3.8+
- AWS credentials (via user interactive input)
Clone the repository:
git clone https://github.com/Cloudopsshell/xferctl.git
cd xferctlInstall dependencies:
pip install -r requirements.txtYou can manually install xferctl to your binary path with the following commands:
curl -o xferctl https://raw.githubusercontent.com/Cloudopsshell/xferctl/main/xferctl
chmod +x xferctl
sudo install -m 755 xferctl /usr/local/bin
# If you updated your PATH, reload your shell configuration:
source ~/.zshrc # or source ~/.bashrc, depending on your shellSee --help for all options.
Basic S3 copy (same account):
xferctl --mode same-account --source-bucket <source> --dest-bucket <dest>Cross-account copy:
xferctl --mode cross-account --source-region <source-region> --source-bucket <source> --dest-region <dest-region> --dest-bucket <dest>Example cross-account copy:
xferctl --mode cross-account --source-region eu-north-1 --source-bucket cloudopsshell-source-bucket --dest-region eu-west-1 --dest-bucket cloudopsshell-destination-bucketClean-up:
xferctl --mode cross-account --source-region eu-north-1 --source-bucket cloudopsshell-source-bucket --dest-region eu-west-1 --dest-bucket cloudopsshell-destination-bucket --cleanupxferctl is community-first! We encourage contributions, feature requests, and bug reports. Please:
- Fork the repo and create your branch.
- Submit a pull request with clear description.
- Follow the Apache-2.0 License.
- Multi-cloud support (GCP, Azure, etc.)
- Advanced transfer options (sync, batch, filters)
- GUI and API integrations
Apache-2.0. See LICENSE for details.
- Join discussions and share ideas in GitHub Issues.
- Help shape the roadmap and features.
Built by Cloudopsshell. Developed by the community.





