“Создайте псевдоним рыб” Ответ

Добавить псевдоним рыб раковина

# 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
Pleasant Puma

Создайте псевдоним рыб

alias rmi="rm -i"

# This is equivalent to entering the following function:
function rmi --wraps rm --description 'alias rmi=rm -i'
    rm -i $argv
end

# This needs to have the spaces escaped or "Chrome.app..."
# will be seen as an argument to "/Applications/Google":
alias chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome banana'
DJ Ultimate Disco Party

Ответы похожие на “Создайте псевдоним рыб”

Вопросы похожие на “Создайте псевдоним рыб”

Больше похожих ответов на “Создайте псевдоним рыб” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования