https://github.com/wberrier/batch-command-runner
https://github.com/wberrier/batch-command-runner
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wberrier/batch-command-runner
- Owner: wberrier
- Created: 2022-06-26T02:27:40.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-27T06:57:24.000Z (4 months ago)
- Last Synced: 2025-01-27T07:29:42.423Z (4 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Overview
I've often written little scripts to recursively do a bunch of stuff
to a directory of files.This is my attempt at a little more general purpose solution, and
hopefully easier to use than shell/find/xargs.# Example
This is how to convert a bunch of files from .tiff to .png to a
different output directory:batch-command-runner ".*\.tif" "mkdir -p '~/tmp/photos/@dirname@'; convert '{}' '~/tmp/photos/@dirname@/@[email protected]'"
# TODO
* implement "multi" job runner
* add more special keyword substitutions