1. 在当前主机编写脚本文件history_max.sh显示主机中执行频率最高的前5个命令
编写脚本文件
#!/bin/bash
#########################
#File name:history_max.sh
#Version:v1.0
#Email:admin@test.com
#Created time:2022-12-27 16:28:54
#Description:
#########################
history_file=~/.bash_history
echo "`sort $history_file | uniq -c | sort -t " " -k 1 -nr | head -5`"
给文件添加r,x权限,并查看运行结果
2.判断主机是否存在rhel用户,如果存在则设置密码为redhat,如果不存在则创建用户并设置密码。
编写脚本文件
#!/bin/bash
#########################
#File name:uid_rhel.sh
#Version:v1.0
#Email:admin@test.com
#Created time:2022-12-27 17:25:53
#Description:
#########################
read -p "input a username:" username
if grep rhel /etc/passwd &> /dev/null
then
echo `passwd $username`
else
useradd rhel -p redhat
fi
给文件添加r,x权限,并查看运行结果
3.通过设置变量HISTTIMEFORMAT,使得当执行history命令时输出格式如下:[2022-12-25 16:53:42][root]history