Differences between revisions 1 and 2
Revision 1 as of 2025-07-07 18:28:12
Size: 147
Editor: SamatJain
Comment:
Revision 2 as of 2025-07-08 17:57:07
Size: 359
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
## Expressing dependencies

    # Run task b and c before a
    # Just like Makefile
    a: b c

    # Run task b and c after a
    # per: https://github.com/casey/just/discussions/818
    a: && b c

Just command runner

Cheat sheet for the just command runner.

Expressing dependencies

# Run task b and c before a
# Just like Makefile
a: b c

# Run task b and c after a
# per: https://github.com/casey/just/discussions/818
a: && b c


CategoryCheatSheet

SamatsWiki: CheatSheet/Just (last edited 2025-07-08 17:57:07 by SamatJain)