Quick Start
Get started with MFT in just a few minutes.
Basic Transfer
The simplest way to transfer a file:
bash
# Send a file
mft send ./myfile.txt recipient@example.com
# Receive a file
mft receiveTransfer with Progress
Monitor your transfer progress:
bash
mft send --progress ./large-file.tar.gz recipient@example.comTransfer to Multiple Recipients
Send to multiple recipients at once:
bash
mft send ./document.pdf alice@example.com,bob@example.comResume Interrupted Transfers
Automatically resume failed transfers:
bash
mft send --resume ./large-file.tar.gz recipient@example.comCommon Options
bash
# Set transfer timeout
mft send --timeout 300s ./file.txt recipient@example.com
# Use specific transfer protocol
mft send --protocol sftp ./file.txt recipient@example.com
# Enable compression
mft send --compress ./file.txt recipient@example.com
# Set retry count
mft send --retry 5 ./file.txt recipient@example.comNext Steps
- Architecture - Learn about MFT architecture
- API Reference - Explore the API
- Plugins - Extend MFT with plugins