From 928ff1b873213f9927c29d757305eabe0f39489e Mon Sep 17 00:00:00 2001 From: "Cam.Rossington.debsrv" Date: Tue, 2 Jan 2018 13:00:12 -0500 Subject: [PATCH] fish: add page Added the fish shell. Information included was based on other shells, notably bash. --- pages/common/fish.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/common/fish.md diff --git a/pages/common/fish.md b/pages/common/fish.md new file mode 100644 index 0000000000..664e0ad045 --- /dev/null +++ b/pages/common/fish.md @@ -0,0 +1,27 @@ +# fish + +> A command-line shell for the 90's + +- Start interactive shell: + +`fish` + +- Execute a command: + +`fish -c "{{command}}"` + +- Run commands from a file: + +`fish {{file.fish}}` + +- Check a file for syntax: + +`fish --no-execute {{file.fish}}` + +- Display version information and exit: + +`fish --version` + +- Enable debug information (ranges from 0 to 128): + +`fish --debug-stack-frames={{NUMBER}}`