Command differences with symbolic links
Certain directories like /etc, /dev, /tmp, and /var are converted to symbolic links. Some shell commands have minor technical differences when they refer to symbolic links instead of regular files or directories. For example, ls does not follow symbolic links by default.
In order to follow symbolic links, you must specify ls -L or provide a trailing slash. For example, ls -L /etc and ls /etc/ both display the files in the directory that the /etc symbolic link points to.
Other shell commands that have differences due to symbolic links are du, find, pax, rm and tar.
An administrator can put alias commands in /etc/profile that could affect all users' login shells. IBM® does not recommend this, because changing the default behavior in /etc/profile may produce unexpected results in shell scripts or by shell users.