-
shell 应用场景查看全部
-
1.注意数组的赋值需要${} 如: ssharray[$i]=${script_file} echo ${ssharry[$choice]}查看全部
-
shell 高亮显示 echo -e "\e[1;30m Who am I \e[1;35m" 1. echo -e 表示改变终端颜色 2. "\e[输出内容的颜色 输出内容 \e输出结束后的颜色" 3. [1;30m 中,1表示开启颜色,30m是颜色参数 4. $(tput sgr0)表示回到初始颜色查看全部
-
1. syntax on/off 高光 2. set autoindent/cindent 自动缩进 3. set number/nonumber 显示行号查看全部
-
1. 在vim末行可以临时改变vim编辑器设置 2. 修改配置文件/etc/vimrc文件永久改变系统vim编辑器设置 3. 在配置文件/home/用户名/.vimrc下针对某一个用户修改vim编辑器查看全部
-
自动缩进 自动加入文件头的设置查看全部
-
语法高亮,显示行号查看全部
-
脚本调脚本,循环,高亮显示,关联数组查看全部
-
脚本打包,重命名查看全部
-
1.主控 2.对操作系统的监控 3.对应用的状态分析,如nginix和mysql 4.日志分析查看全部
-
#!/bin/bash resettem=$(tput sgr0) declare -A ssharray i=0 numbers="" for script_file in $(ls -I "monitor_man.sh" ./) do echo -e "\e[1;35m" "The Script:" ${i} '==>' ${resettem} ${script_file} ssharray[$i]=${script_file} numbers="${numbers} ${i}" i=$[i+1] done while true do read -p "Please input a number [ ${numbers} ]:" execshell if [[ ! ${execshell} =~ ^[0-9]+ ]];then exit 0 fi ./${ssharray[$execshell]} done查看全部
-
i的自增长 i=$(( $i+1 ))查看全部
-
高亮" " 用;查看全部
-
123查看全部
-
declare -A ass_array1 #申明关联数组变量 ass_array1[index1]=pear #使用关联数组查看全部
举报
0/150
提交
取消