Quickly launch certain applications in Linux

How to quickly start certain applications under Linux

Under linux, we will use a variety of applications. Sometimes these applications do not have a quick startup method directly in our graphical interface. The image of the virtual machine I use is Ubuntu 16.04.

Take pycharm as an example:

We use vim editor for editing

vim ~/.bashrc

We go directly to the last line (you can use the shortcut key shift+G) to
find the ailas input

pycharm=“bash /home/pycharm-2019.3.2/bin/pycharm.sh”

Then enter on the command line

source ~/.bashrc

Make it effective.
So we can directly enter pycharm in the command line to quickly start some applications

Guess you like

Origin blog.csdn.net/Lovely_Xiaoguo/article/details/107883754