Как я могу сделать открытым LibreOffice сохранить файл без использования графического интерфейса?
Я уехал за границу, оставив LibreOffice Writer открытым с каким-то отредактированным файлом. К сожалению - я забыл нажать Сохранить! Теперь у меня есть SSH-доступ к этой машине, но - как я могу заставить LibreOffice сохранять файл без меня, используя графический интерфейс? Могу ли я как-то подать сигнал?
Я использую Debian GNU/Linux Stretch.
1 ответ
I did not test your setup, but this worked for me from a terminal:
xdotool search --name Untitled key ctrl+s
xdotool search --name Untitled key ctrl+q
"Untitled 1" was the name of the document in my test. Ctrl + s saves, and Ctrl + q quits.
See https://unix.stackexchange.com/questions/87831/how-to-send-keystrokes-f5-from-terminal-to-a-process .
Alternatively, if you force kill the process, next time it should open in recover mode. Probably it will be able to recover most or all of the changes.