Skip to content

Learn.
Test.
Build.

A lightweight collection of tiny scripts to copy, test, and learn from.

Browse scripts →Bash basics →

Interactive BASH Sandbox

Type commands directly, or click a script in the sidebar to simulate running it step-by-step!

CHRISAPP-BASH-SH v1.0.0 ONLINE
Welcome to ChrisApp Bash Terminal Simulator!
Type 'help' to see list of available commands.
chrisapp:~$

Quick Commands

Micro-interaction demo

A real little state machine: press the demo button and it snaps through default → armed → fired → locked.

State: default
1. DEFAULT
2. ARMED
3. SNAP
4. LOCKED

PHP
Scripts

HTML
Scripts

BASH
Scripts

Featured: MD5 Generator

Code

<?php
$input = $_POST['md5me'] ?? '';
$hash = $input !== '' ? md5($input) : '';
?>

Live Demo