码迷,mamicode.com
首页 >  
搜索关键字:awk sed grep    ( 22162个结果
sed的用法总结
sed -n '1p' input #打印input文件的第一行sed '1p' input #不仅打印文件第一行,还打印文件的输出内容sed -n '3,6p' input #搜索input文件第3~6行的文件sed -n '/certificate/p' input #搜索input文件cert ...
分类:其他好文   时间:2021-03-04 13:06:57    阅读次数:0
Linux shell 命令之find, useradd, groupadd,通配符,及grep命令
sudo find /etc/ -type f -name "rc*" -exec ls -l {} \;find . -name "t*" -perm 777 -printfind . -mtime -180find /var/log/ -mtime -3 -ok rm {} \; vim 替换: ...
分类:系统相关   时间:2021-03-04 13:03:44    阅读次数:0
网络命令 - ifconfig
网络命令 - ifconfig 1. 查看所有网卡信息 ifconfig -a 2. 查看本机所有IP值信息 ifconfig | grep inet 3. 查看指定网卡IP值 ifconfig '网卡名称' ...
分类:其他好文   时间:2021-03-03 12:01:55    阅读次数:0
打印乘法口诀表(shell/sed/awk/python)
shell #! /bin/bash #外层循环 for ((i=1;i<=9;i++)) do #内层循环 for ((j=1;j<=i;j++)) do #计算2个数的乘积 let "product=i*j" #输出乘积 printf "i*i?j=$product" #输出空格分隔符 if [ ...
分类:编程语言   时间:2021-03-03 11:55:14    阅读次数:0
Linux查看端口占用进程
查看程序对应的进程号: ps -ef | grep 进程名字 查看端口号所占用的进程: netstat -nltp | grep 端口 或者 netstat -anp | grep 端口 杀死进程 kill pid ...
分类:系统相关   时间:2021-03-02 12:19:11    阅读次数:0
linux命令
cd,pwd,ls,cp,mv,history,ps,top,netstat,grep,tar-cvf/xvf,这些是基本的 touch,cat,head,tail,跟文件相关 vim命令 vi,进入文件页, i,插入 esc,切换插入模式和命令模式,然后:wq,保存后退出 最近重点学习了awk命令 ...
分类:系统相关   时间:2021-03-02 11:57:34    阅读次数:0
进程管理
1.定时任务 crontab -e s m h d month w cmd 2.任务后台执行 command & 3.查看进程 ps -ef|grep prcss 4.杀死进程 kill -9 pid 5.服务状态 service prcss_name status|start|stop|resta ...
分类:系统相关   时间:2021-03-01 14:17:23    阅读次数:0
网络管理
1.查看端口 netstat -anp|grep port netstat -antup 2.文件传输 wget [-options] args curl [-options] args lftp [-options] args 3.远程登录 telnet host_name port ssh [- ...
分类:其他好文   时间:2021-03-01 14:17:05    阅读次数:0
SED LEARN NOTE
SED LEARN NOTE 参考资料 左耳朵耗子叔sed教程 GNU online sed manual SED LEARN NOTE sed基本格式 sed [option] [sed-command] input-file sed对文本的每一行依次执行sed-command,最终返回处理结果 ...
分类:其他好文   时间:2021-03-01 13:19:59    阅读次数:0
?linux基础命令 截取 cut
######cut -d 指定分隔符 -f 指定列数 1,2,3 [root@rongbiz002 26]# awk '{print $1}' /www/wwwlogs/c2p.rongbiz.com-access_log|head -n5 |cut -d '.' -f 1,2,3 112.64.5 ...
分类:系统相关   时间:2021-02-27 13:40:48    阅读次数:0
22162条   上一页 1 ... 19 20 21 22 23 ... 2217 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!