Владимир Куц: сам путь прописывается /opt/aliases.conf
а вот формирование его происходит в файле createAliasDB.sh в блоке
# appendAliasEntry
# check to see if an entry already exists in the aliases.conf file
# if it doesn't append it to the end of the file
appendAliasEntry() {
aliasName=$1
newDB=$2
# check if aliasName already exists
oldLine=`grep "^$aliasName" $AliasFile`
if [ -z "$oldLine" ]
then
# Create the alias file entry
echo "$aliasName = $newDB" >> $AliasFile
else
cat <