fish
The Friendly Interactive SHell, a command-line interpreter designed to be user friendly.
- Start an interactive shell session:
fish
- Start an interactive shell session without loading startup configs:
fish --no-config
fish --command "{command}"
fish {path/to/script.fish}
- Check a script for syntax errors:
fish --no-execute {path/to/script.fish}
- Start an interactive shell session in private mode, where the shell does not access old history or save new history:
fish --private
- Define and export an environmental variable that persists across shell restarts (builtin):
set --universal --export {variable_name} {variable_value}
fish --version
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).