# How to execute the last command with Sudo

If you forgot to add `sudo` in your last command, you don’t need to type it completely. To execute ant last executed command by as superuser:

```bash
sudo !!
```

Also, The double exclamation point will repeat the last command. This could be useful when you’ve already executed a very long command and don’t wanna re-type it again.

### References

1.  [https://man7.org/linux/man-pages/man8/sudo.8.html](https://man7.org/linux/man-pages/man8/sudo.8.html)
