just
just copied to clipboard
🤖 Just a command runner
Hi. As I'd like to declare just fragments remotely and get them executed locally, I'd like to be able to fetch them via curl and get them piped into just....
I'm not sure if this is an issue only with my terminal (Terminal.app 2.14 on macOS Sonoma), my shell (zsh 5.9), my termcap or the following recipe: ```justfile psql *REST:...
I think a `--recursive` flag could be useful in a couple of different commands e.g. instead of `--list-submodules` or in `--groups` to also include groups from modules.
In v.1.29.1, I can do something like `just --list ` and see the recipes for a given submodule. It would be great if I could do something along the lines...
``` _setup_: echo "setup recipe will run BEFORE any other recipe gets triggered" run cmd: echo "do something" _teardown_: echo "teardown recipe will run AFTER any other recipe gets triggered"...
It should be possible, when a variadic parameter receives multiple arguments, to call a dependency for each of those arguments: This could look like: ```just foo *args: (bar *args) @bar...
Embed Python
@runeimp and I discussed this a bit in #531, but I thought that it would be good to give it its own issue. In that thread, we discussed embedding a...
I want to do something like below, so I can retrieve some variable set from same shell: var=a justfile: show: echo $var
- When building archives (eg. git bundles) with a justfile I would like the filename to reflect the time of creation. Alphabetical sorting of such files should also make sense....