Horje
add alias fish shell Code Example
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




Shell

Related
How to delete branch github Code Example How to delete branch github Code Example
install appx Code Example install appx Code Example
authy Code Example authy Code Example
how to cat only the first ten lines of a file linux Code Example how to cat only the first ten lines of a file linux Code Example
git remote Code Example git remote Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12