Developer reference

Bash Commands Cheatsheet

Common shell patterns for files, pipes, variables, and scripts.

Print working directory

Show the current directory.

pwd

List files

Show files with permissions.

ls -la

Pipe output

Read long output interactively.

command | less

Environment variable

Run a command with a temporary variable.

NAME=value command

Related tools