Are you refering to shell aliases? For example, lines like:
alias 'dir'='ls -l'
Slackware does not provide an alias file - you have to write your own. Fortunately, this is not difficult.
The alias command is a shell command like any other, and can be run from the command line, from ~/.bash_profile, ~/.bashrc, or any other script you want to run. Here's how I set up my aliases, in case it helps.
1) Using your favorite text editor, create a ~/.bash_alias file. Put your aliases here. For example:
alias 'xterm'='xterm -ls'
alias 'vi'='gvim'
alias 'ls'='ls -la'
2) In your ~/.bash_profile, add the following
Code:
if [ -e $HOME/.bash_alias ]
then
source $HOME/.bash_alias
fi
Next time you log in, the aliases in ~/.bash_alias will be in effect. If you want them to take effect immediately, just type
source ~/.bash_alias
and you're all set. Hope that helps!