How do I set or clear an environment variable?
How do I run a command every login? What's fish's equivalent to .bashrc?
How do I set my prompt?
function fish_prompt
set_color $fish_color_cwd
echo -n (prompt_pwd)
set_color normal
echo -n ' > '
end
How do I run a command from history?
How do I run a subcommand? The backtick doesn't work!
for file in (ls)
echo $file
end
How do I get the exit status of a command?
grep -q foo bar; echo $status
How do I make fish my default shell?
/usr/local/bin/fish
Then run:
chsh -s /usr/local/bin/fish
How do I customize my syntax highlighting colors?
How do I update man page completions?
My question wasn't answered!
Contact information is available at the bottom of this page.