码迷,mamicode.com
首页 > 系统相关 > 详细

【Linux 工作经常使用命令 】

时间:2015-06-04 20:46:03      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

1, 批量杀某个程序

比方某个程序叫  url_info.py, 起了若干个进程 。 高速查杀。

先查看

        ps aux | grep url_info.py

确认没问题 ,能够杀,则批量kill

ps aux | grep url_info.py  | cut -c 9-15 | xargs  kill


2,查看Linux 上 使用的 port情况

grep后面跟 要 检查的port,比方向看看 9999 port有没有被占用

netstat  -apn | grep 9999


3,创建 Linux用户 ,username是fupeng

useradd -s /bin/bash -g work -G root fupeng


4.

exit

sudo -iu root


5递归创建文件夹

mkdir -p letter/important


6怎样用find 查找隐藏文件

find . -depth -name ‘.?*‘


【Linux 工作经常使用命令 】

标签:

原文地址:http://www.cnblogs.com/mengfanrong/p/4552761.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!