just Verified current stable Not installed? Version Control

Just / Print Justfile

Print Justfile

Use 'just --dump' to display the full contents of your Justfile for easy review.

$
Terminal
just --dump

When To Use

Auditing the Justfile for syntax and content verification.

Terminal Output

Expected runtime feedback

Simulated preview
>
Output
# Justfile

# This is a sample Justfile

task1:
	echo "Running task 1"

task2:
	echo "Running task 2"

Command Breakdown

What each part is doing

just
Base Command
The executable that performs this operation. Here it runs Just before the shell applies any redirect operators.
--dump
Command Option
Tool-specific option used by this command invocation.

How To Run

Execution path

  1. Step 1

    Open your terminal.

  2. Step 2

    Run the command: just --dump.

  3. Step 3

    Review the output for your Justfile contents.

Alternative Approaches

Comparable commands in other tools

Alternative version control tools for the same job.