摘要: 导入hellodb.sql生成数据库 1. 在students表中,查询年龄大于25岁,且为男性的同学的名字和年龄 select name,age from students where age>25 and Gender="M"; 2. 以ClassID为分组依据,显示每组的平均年龄 select 阅读全文
posted @ 2021-10-26 10:38 陈强。 阅读(102) 评论(0) 推荐(0)
摘要: 正则表达式练习 1、显示/proc/meminfo文件中以大小s开头的行(要求:使用两种方法) cat /proc/meminfo | grep -i ^s cat /proc/meminfo | grep -iv ^[^s] 2、显示/etc/passwd文件中不以/bin/bash结尾的行 gr 阅读全文
posted @ 2021-09-20 19:18 陈强。 阅读(663) 评论(0) 推荐(0)
摘要: 1、找出ifconfig“网卡名”命令结果中本机的IPv4地址 ifconfig| egrep -A1 ^eth0 | tail -n+2 | tr -s " " | cut -d" " -f 3 2、查出分区空间使用率的最大百分比值 df | tail -n+2 | tr -s " " % | c 阅读全文
posted @ 2021-09-19 12:48 陈强。 阅读(59) 评论(0) 推荐(0)
摘要: 1、显示/etc目录下所有以l开头,以一个小写字母结尾,且中间出现至少一位数字的文件或目录列表 ls -d /etc/l*[[:digit:]]*[[:lower:]] 2、显示/etc目录下以任意一位数字开头,且以非数字结尾的文件或目录列表 ls -d /etc/[0-9]*[^[:digit:] 阅读全文
posted @ 2021-09-18 17:16 陈强。 阅读(379) 评论(0) 推荐(0)