!!
in bash runs last command. I find it too difficult to type given how much I use it. alias
to the rescue, I presumed.
Or not. I tried:
$ alias dl='!!' # Aliasing
$ echo Testing123 # Here's something to test on
Testing123
$ dl # Testing alias
bash: !!: command not found
$ # I AM DISAPPOINT
Without quotes also fails.
What's up?