Utiliser directement une commande, même si un alias a été défini pour elle.
$ alias cp='cp -i'
$ \cp $src $dest
$ (1) (2)
1 | No confirmation prompt, because the alias is not used if the command is prefixed by an anti-slash \ |
2 | Works at least for bash and zsh |