Playground for Linux Bash scripts (projects, experiments, & POCs)
Explore: Basics Operators Printf Regex VIM
- Bash v5.0
- $BASH_VERSION ∙∙∙∙∙∙∙ $SHELL ∙∙∙∙∙∙∙ $PATH ∙∙∙∙∙∙∙ $HOME
- Last executed command:
$?(exit val) ∙∙∙∙∙∙∙$!(pid) $$(shell pid) ∙∙∙∙∙∙∙$_(next item in pipeline)$#(num args passed) ∙∙∙∙∙∙∙$@(arg array) ∙∙∙∙∙∙∙$*(args string)
- Shell scripts start with
#!+ location of shell, e.g.#!/bin/bash