danieldiekmeier / textexpander-to-alfred3

Convert your TextExpander snippets to Alfred 3 snippets.
ISC License
62 stars 1 forks source link

Doesn't handle wildcards/multiple inputs #6

Closed NuclearMonster closed 8 years ago

NuclearMonster commented 8 years ago

If you run te2a3 with a * it only processes the first .textexpander file

danieldiekmeier commented 8 years ago

That's true, but it's not something I plan on changing, because it's not really worth the effort, sorry.

You could try to use a bash loop to convert each file:

for i in *; do te2a3 "$i"; done

(Adapted from http://stackoverflow.com/questions/10523415/bash-script-to-execute-command-on-all-files-in-directory)