Tengo este archivo .bash_profile en /etc/skel.
.bash_profile
Get the aliases and functions
if [ -f /.bashrc ]; then
. /.bashrc
fi
User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
printf "Usuarios conectados\n"
who
Bien. Cada vez que creo un usuario nuevo se copia bien a su carpeta pero al cambiar a ese usuario no se ejecuta la orden "who" ¿Qué estoy haciendo mal? Gracias.