You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd > file # Redirect stdout to file (overwrite)
cmd >> file # Redirect stdout to file (append)
cmd < file # Redirect stdin from file
Command Chaining
cmd1 && cmd2 # Run cmd2 only if cmd1 succeeds
cmd1 || cmd2 # Run cmd2 only if cmd1 fails
cmd1; cmd2 # Run commands sequentially
cmd &# Run command in background
Available Commands
Interpreter Built-ins
Command
Description
echo <args>
Print arguments to stdout
cd <dir>
Change current directory
pwd
Print working directory
export VAR=val
Set environment variable
set
Display all variables
exit [code]
Exit the shell
test <expr>
Evaluate conditional expression
[ expr ]
Same as test
true
Return exit code 0
false
Return exit code 1
help
Display help information
All Linuxify Commands (Fallback)
When running scripts with #!default, ALL Linuxify shell commands are available: