A commmand line utility that allows for batch coping & renaming with globs.
``` Copies and mass-renames files using the variable character ($)
Usage: cpar
Arguments:
Options: -h, --help Print help information -V, --version Print version information ```
Assume a folder with the following files:
src/
- ContactForm.tsx
- ContactForm.module.scss
- ContactForm.astro
cpar src/ContactForm$ src/MembershipForm$
the folder will contain:
src/
- ContactForm.tsx
- ContactForm.module.scss
- ContactForm.astro
+ MembershipForm.tsx (same contents as ContactForm.tsx)
+ MembershipForm.module.scss (same contents as ContactForm.module.scss)
+ MembershipForm.astro (same contents as ContactForm.astro)
Assume a folder with the following files:
src/
- foo.ts
- bar.ts
cpar src/$.js src/$.ts
the folder will contain:
src/
- foo.js
- bar.js
cargo test -- --test-threads=1
Probably a bunch, but the ones that prodded me to make the tool in the first place were:
- Build scripts for multi-language projects
- Porting large numbers of HTML templates to .astro
files
- Creating a copy of a web UI component to use as a starter template
*
) in place of ($
).