We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Process Status的缩写,列出当前进程的快照
ps[参数]
常用参数
显示指定信息
显示所有进程信息,连同命令行
通常连同grep查找特定进程
目前属于您自己登入的 相关进程以及PID,也就是与用户相关的
列出目前所有的正在内存当中的程序
通常加管道与more连用,分页查看
把所有进程列出来并且输出到psinf文件里
lsof -i:80
cd /proc/进程号
ls //可以看到下面的exe
ls -ail //cwd就是对应的项目路径
删除
删除文件夹包括里面的文件rm -rf abc -r : 向下递归 -f : 直接删除无提示
rm -rf abc
移动
mv [选项] 源文件或目录 目标文件或目录
mv a.txt b.txt
mv a.txt dir //将文件a.txt 移到dir文件夹下
-b : 若需覆盖文件,则覆盖前先行备份。 -f :force 强制的意思,如果目标文件已经存在,不会询问而直接覆盖; -i :若目标文件 (destination) 已经存在时,就会询问是否覆盖! -u :若目标文件已经存在,且 source 比较新,才会更新(update) -t : 即指定mv的目标目录,该选项适用于移动多个源文件到一个目录的情况,此时目标目录在前,源文件在后。
是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 比如打出某些文件的列表
ls | grep example
linux命令大全
linux上的安装工具
docker ps
docker restart [containerId | containerName]
docker logs [containerId | containerName]
docker rm [containerId | containerName]
docker images
docker run --name redmine -p 9003:80 -p 9023:22 -d -v /var/redmine/files:/redmine/files -v /var/redmine/mysql:/var/lib/mysql sameersbn/redmine
命令link
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ps命令
linux进程的5种状态
常用参数
通过端口号找到对应的服务,项目路径
文件操作
删除
移动
grep搜索
是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。
比如打出某些文件的列表
linux命令大全
apt-get
docker
docker restart [containerId | containerName]
docker logs [containerId | containerName]
docker rm [containerId | containerName]
命令link
The text was updated successfully, but these errors were encountered: