Skip to content

Instantly share code, notes, and snippets.

@jpbochi
Created January 23, 2023 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpbochi/302e9fd8d4a67f1e53a54e3ef064d63b to your computer and use it in GitHub Desktop.
Save jpbochi/302e9fd8d4a67f1e53a54e3ef064d63b to your computer and use it in GitHub Desktop.
justfile recipe to list all recipes in subdirs
# lists all available just recipes, even from justfiles in subdirectories
list:
@just -l
@find -mindepth 2 -maxdepth 5 -type f -name justfile -printf '%h/\n' | sed 's_^[.]/__' | sort | xargs -n1 -I% just -l --list-prefix ' %' %
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment