-
VIM编辑器设置 1、设置方式分类 临时性的设置(末行模式设置) 永久性的设置(修改vimrc文件) 2、高亮模式设置: syntax on/off(末行模式下,临时生效)末行模式“:/syntax”可以搜索到syntax所在位置 /etc/vimrc或家目录下/home/jeson/.vimrc(添加syntax on/off,设置永久的,其中在用户家目录设置的只对该用户保存永久设置)查看全部
-
脚本作用:查看全部
-
shell中的关联数组查看全部
-
数组例1查看全部
-
Shell中的关联数组查看全部
-
Shell关联数组查看全部
-
Shell高亮显示查看全部
-
vim常用设置1查看全部
-
vim常用设置查看全部
-
syntax on set number查看全部
-
场景控制脚本(下) vi monitor_man.sh ------------- #!/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} # echo ${ssharray[$i]} numbers="${numbers} | ${i}" i=$(($i+1)) done #echo ${numbers} while true do read -p "Please unput a number [ ${numbers} ]:" execshell # echo ${execshell} if [[ ! ${execshell} =~ ^[0-9]+ ]];then exit fi # /bin/sh ./${ssharray[$execshell]} echo ${ssharray[$execshell]} done查看全部
-
场景控制脚本(上) vi monitor_man.sh ------------- #!/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} i=(($i+1)) done查看全部
-
shell中的关联数组 1、关联数组分类: 1)普通数组:只能使用整数作为数组索引 2)关联数组:可以使用字符串作为数组索引 2、使用说明: 1)申明关联数组变量 #declare -A ass_array1(#declare -A +数组变量) 2)数组名[索引]=变量值 #ass_array1[idex1]=pear查看全部
-
shell高亮显示 echo -e 终端颜色+显示内容+结束后的颜色 echo -e '\e[1;31m ning \e[1;0m'查看全部
-
场景脚本结构查看全部
举报
0/150
提交
取消