bash commands
— bash — 1 min read
# list all open files on the system that are using the port 5000lsof -i :5000
# kill the process with PID 546kill 546
# print all environment variablesprintenv
# list files in a single columnls -1 ~/.ssh
— bash — 1 min read
# list all open files on the system that are using the port 5000lsof -i :5000
# kill the process with PID 546kill 546
# print all environment variablesprintenv
# list files in a single columnls -1 ~/.ssh