| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
mf is a cross-platform CLI tool for creating files from the command line — like touch but with clipboard, encoding detection, content type detection, batch creation, and interactive conflict resolution.
cargo install mfOr build from source:
git clone https://github.com/user/mf.git
cd mf
cargo build --release# Create an empty file
mf config.ini
# Write clipboard content to file
mf output.txt
# Save clipboard image to file
mf screenshot.png -c
# Read file content into clipboard
mf -i source.txt
# Preview clipboard content
mf -p
# Create multiple files at once
mf a.txt b.txt c.txt
# Create with specific encoding
mf script.bat --encoding gbk
# Force overwrite (creates .bak backup)
mf report.md -f
# Don't overwrite existing files
mf notes.md --no-clobber
# Rename new file on conflict
mf data.csv --conflict rename
# Set max size limit (MB)
mf large.txt --max-size 10
# Set language
mf --lang zh-CN output.txt
# Quiet mode (no output)
mf -q output.txt
# Verbose mode
mf -v output.txtmf --help # General help
mf --help-encoding # Encoding reference
mf --examples # Usage examples
mf --help-config # Config file referencemf auto-detects your system language and supports 6 locales:
| Code | Language |
|---|---|
| en | English (default fallback) |
| zh-CN | Simplified Chinese |
| zh-TW | Traditional Chinese |
| de | German |
| ja | Japanese |
| ko | Korean |
Override with --lang:
mf --lang de output.txt
mf --lang ja --help-encodingMIT
| Back | FazBrowse Home | New Git URL |