frequently used linux commands

版权声明:Copyright reserved to Hazekiah Wang ([email protected]) https://blog.csdn.net/u010909964/article/details/86538050

find out the pid that occupies certain port

ps aux | grep <port>
netstat -anp | grep <port>

find out the run file location

which <cmd>

e.g. which python

symbolic link

sudo ln -s <source/path> <target/path>

猜你喜欢

转载自blog.csdn.net/u010909964/article/details/86538050