第三周

1、复制/etc/profile至/tmp/目录,用查找替换命令删除/tmp/profile文件中的 行首的空白字符

cp /etc/profile /tmp/ ; cat /tmp/profile | tr -d ' '

2、在vim中设置tab缩进为4个字符

个人设置

vim ~/.vimrc 

set ts=4

全局设置

vim /etc/vimrc

set ts=4

3、20分钟内通关vimtutor(可参考https://yyqing.me/post/2017/2017-02-22-vimtutor-chinese-summary)

4、编写脚本 createuser.sh,实现如下功能:使用一个用户名做为参数,如果 指定参数的用户存在,就显示其存在,否则添加之;显示添加的用户的id号等信息

username=$1

if `id $name &> /dev/null`;then

echo "用户存在,用户的ID信息为:`id $name`"

else

useradd $1 &> /dev/null && { echo "User created successfully"; id $1; }


5、编写脚本 systeminfo.sh,显示当前主机系统信息,包括:主机名,IPv4地址,操作系统版本,内核版本,CPU型号,内存大小,硬盘大小

前提是网卡名字已经改为eth0

#!/bin/bash

echo -e "HOSTNAME:`hostname`"

echo -e "IPADDR: ` ifconfig eth0|grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}' |head -n1`"

echo -e "OSVERSION: `cat /etc/redhat-release`"

echo -e "KERNEL: `uname -r`"

echo -e "CPU: `lscpu|grep 'Model name'|tr -s ' '|cut -d : -f2`"

echo -e "MEMORY: `free -h|grep Mem|tr -s ' ' : |cut -d : -f2`"

echo -e "DISK: `lsblk |grep '^sd' |tr -s ' ' |cut -d " " -f4`"

6、编写脚本disk.sh,显示当前硬盘分区中空间利用率最大的值

df| tr -s ' ' '%'|cut -d% -f5|sort -nr|head -1

你可能感兴趣的:(第三周)