Скрипты для Linux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
275 B

#!/bin/bash
prefix='a_'
mkalias_with_prefix()
{
alias ${prefix}$1="$1"
}
ask_continue()
{
read -p "Продолжить [Y/n]?:" answ
if [[ "${answ}" == "n" || "${answ}" == "N" ]]; then
echo "Отменено"
return 0
fi
return 1
}