Fish Alias/Function Location
Tagged with: alias, fish, function, Linux, location, shell, store
Saturday, January 5th, 2008 10:08 PM
The alias/function of the fish shell are stored at ‘/home/username/.config/fish/functions’
The alias/function of the fish shell are stored at ‘/home/username/.config/fish/functions’
Fish shell has an easy method to create a command alias…
alias del='rm'
save_function del
This is how you create a permanent alias is fish…
alias x='exit'
save_function x