-
shell中的关联数组
查看全部 -
shell高亮显示
查看全部 -
shell高亮显示
查看全部 -
vim编辑器有用的设置
查看全部 -
vim编辑器有用的设置
查看全部 -
对某个用户的vim编辑器进行修改
查看全部 -
/etc/vimrc可永久改变vim编辑器的模式
查看全部 -
把高亮关闭
查看全部 -
vim编辑器的设置
查看全部 -
vim编辑器的设置
查看全部 -
shell的作用
查看全部 -
shell的用途
查看全部 -
shell脚本场景
查看全部 -
#!/bin/bash
#重置显示文字的颜色为系统默认的颜色
reset=$(tput sgr0)
# 声明关系数组
declare -A sh_array
# 统计文件的数量
i=0
numbers=""
workFile_path="/root/work/"
for script_file in $(ls -I 'monitor_main.sh' /root/work)
do
echo -e '\e[1;31m' "The Script:" ${i} '==>' ${reset} ${script_file}
grep -E "^\#Program function" ${workFile_path}${script_file}
sh_array[$i]=${script_file}
numbers="${numbers} | ${i}"
# echo ${sh_array[$i]}
i=$((i+1))
done
#echo ${numbers}
while true
do
read -p "Please input a number [ ${numbers} ]:" input_num
echo ${input_num}
if [[ ! ${input_num} =~ ^[0-9]+ ]];then
exit 0
fi
/bin/bash /root/work/${sh_array[$input_num]}
done
查看全部 -
shell中关联数组
查看全部
举报