Did you launch nano by CLI? Your command history could go back far enough that the command may still be in there. A quick history | grep nano
might be helpful here.
You might also need to check the command history for the superuser account depending on whether and how you might have used sudo
to access any privileged files. If you had a root shell open at the time, commands were likely logged to the history file in /root, so you may need to run sudo -s
and open a root shell before running the history | grep nano
command. sudo
seems not to take shell primitives as an argument, so `sudo history probably won’t work.
Good luck!
deleted by creator