Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
# Who am I? whoami # Where am I? pwd # print working directory # List files ls # basic list ls -la # detailed list with hidden files ls -lh # human-readable file sizes # Navigate cd /home/user # absolute path cd Documents # relative path cd .. # go up one level cd ~ # go to home directory cd - # go to previous directory # System info uname -a # kernel info hostname # computer name date # current date/time cal # calendar uptime # how long the system has been running
Result
Open