You can use the !$ to reduce repetition when using the command line:
$ echo ping
ping
$ echo !$
ping
You can also build upon the repetition
$ echo !$ pong
ping pong
$ echo !$, a great game
pong, a great game
Notice that in the last example we did not get ping pong, a great game because...