11

I am a new user of precise pangolin and learning to use the terminal. I just wonder whether there is any easy command/combination of commands to open an application (LibreOffice Writer, for example) via terminal, just like we use sudo apt-get install <<packagename>> to install an application.

Jorge Castro
  • 73,717
Della
  • 505

2 Answers2

12

You can just type the the name of the application you want to start. In your case it would be libreoffice or if you want to go to writer directly you can type libreoffice --writer

Germar
  • 6,537
5

If you do not want the application tied to a controlling terminal you can type the application name followed by & disown.

In @Germar's example the full command would read libreoffice & disown. This would enable you to close the terminal you launched from, and continue using libreoffice.

Cadoiz
  • 278