Skip to content
This repository has been archived by the owner on Mar 3, 2021. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 1.11 KB

fish-shell.md

File metadata and controls

22 lines (16 loc) · 1.11 KB

Fish

As noted other places in this repository I use fish shell in my local environment. After 15 years of using Bash and Zsh I found fish to be very good. While I still write my shell scripts in Bash I find fish to be good at living in a CLI life. Here's a good read if you are interested in making the switch.

Some useful resources:

Some of my favorite aliases or functions:

# Alias k to kubectl
function k --wraps kubectl -d 'kubectl shorthand'
    kubectl $argv
end

# Save the function
funcsave k