just
just copied to clipboard
🤖 Just a command runner
Using the alacritty v0.13.2 terminal, I'm trying to write Nushell v0.93.0 specific commands in my justfile on Windows 11 23H2. My justfile looks like: ``` for: for file in `ls...
The current nushell completion script, in `src/completions.rs` `NUSHELL_COMPLETION_SCRIPT` only completes recipe names. We should integrate [clap_complete_nushell](https://crates.io/crates/clap_complete_nushell), so we can also complete flags and other arguments. Note that `clap_complete_nushell` doesn't complete...
One thing I'd like to do with my justfiles is gating recipes like one use feature gating in rust. ```rust #[cfg(feature="categories")] ``` I'd like to do the following in just:...
Recipes should be able to define options: ``` foo --bar BAZ: echo {{BAZ}} ``` Maybe flags too: ``` foo --BAZ: echo {{BAZ}} # is it "true" or "false"? Or ""...
I have following justfile in the same directory: var.just ``` compose_provider := 'podman' ``` test.just ``` import 'var.just' show: @echo "compose_provider is {{ compose_provider }}" ``` Justfile ``` import 'var.just'...
Grateful if you would publish just to Extra Packages for Enterprise Linux (EPEL) repository
`executable_exists` function to check whether a certain program exists and is executable on the path
As an example I want my install scripts to use `nala` if available and fall back to `apt-get` if not.
Originally posted by **gl-yziquel** May 26, 2024 Hi. I've got a use case that seems to go counter to current Just behavious, and, as suggested on a bug report discussion,...
Please subscribe to this issue if you'd like to receive notifications for requests for user feedback. Situations often arise in which user feedback would be very helpful. Some examples are:...
Dearest Reviewer, I was looking at the parser and the format for a list of things [] was already support for shells. I reused that concept to make an ordered...