rsync
CLIFast, versatile file copy and sync tool for local and remote transfers.
file-archive2 recipes
duckdb
CLIIn-process analytical SQL database engine.
Convert Parquet to CSV~97% est.
duckdb -c "COPY (SELECT * FROM 'data.parquet') TO 'output.csv' (HEADER, DELIMITER ',')"data2 recipes
exiftool
CLIRead and write meta information in image, audio, and video files.
Copy metadata from one file to another~94% est.
exiftool -TagsFromFile source.jpg target.jpgmedia3 recipes
ffmpeg
CLIComplete, cross-platform solution for recording, converting, and streaming audio/video.
Trim video to a time range~96% est.
ffmpeg -i input.mp4 -ss 00:01:00 -to 00:02:30 -c copy output.mp4media5 recipes
psql
CLIPostgreSQL interactive terminal, used non-interactively for one-shot queries and scripts.
Export a query as CSVVerified macOS · Linux
psql "$DATABASE_URL" -Atc "COPY (SELECT slug, name FROM tools ORDER BY slug LIMIT 2) TO STDOUT WITH CSV HEADER"data4 recipes · 4 verified