Answers for "add alias fish shell"

0

add alias fish shell

# Define alias in shell
alias rmi "rm -i"

# Define alias in config file
alias rmi="rm -i"

# This is equivalent to entering the following function:
function rmi
    rm -i $argv
end

# Then, to save it across terminal sessions:
funcsave rmi
Posted by: Guest on June-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language