全代码都在这里 https://github.com/Tiakon/software-launch-script-cluster/tree/master/monitor-scipt 亲测有效,喜欢的给个star吧
2018-05-25
#######creator bai
#!/bin/bash
#以mo开头
i=0;
lv=$(ls | grep -v "^mo");
for scr_file in $lv
do
fp=$(echo -e "\e[1;35m" $scr_file $(tput sgr0));
echo "the script:" $i '===》' $fp
((i=i+1));
done
#!/bin/bash
#以mo开头
i=0;
lv=$(ls | grep -v "^mo");
for scr_file in $lv
do
fp=$(echo -e "\e[1;35m" $scr_file $(tput sgr0));
echo "the script:" $i '===》' $fp
((i=i+1));
done
2018-02-02
语法高亮syntax on
显示行号set number
自动缩进
set autoindent把当前行的对起格式应用到下一行;
set cindent缩进2个TAB键
拓展:
set smartindent,智能的选择对齐方式;
set tabstop=4,设置tab键为4个空格;
set shiftwidth=4,将换行自动缩进设置成4个空格;
显示行号set number
自动缩进
set autoindent把当前行的对起格式应用到下一行;
set cindent缩进2个TAB键
拓展:
set smartindent,智能的选择对齐方式;
set tabstop=4,设置tab键为4个空格;
set shiftwidth=4,将换行自动缩进设置成4个空格;
2018-01-04
1 #!/bin/bash
2
3 chongzhi=$(tput sgr0)
4 i=0
5
6 for ls in $(ls -I zx.sh ./)
7 do
8 echo -e "\e[1;35m lianbiao:" $i '==>>' $chongzhi $ls
9 i=$((i+1))
10 done
#我感觉老师把一个简单的问题弄复杂了(英文渣所以用的拼音),之前学习了tony老师的变量格式有点习惯了
#这里的声明和numbers=""我在这里不知道干嘛用的所以没写
sh zx.sh
2
3 chongzhi=$(tput sgr0)
4 i=0
5
6 for ls in $(ls -I zx.sh ./)
7 do
8 echo -e "\e[1;35m lianbiao:" $i '==>>' $chongzhi $ls
9 i=$((i+1))
10 done
#我感觉老师把一个简单的问题弄复杂了(英文渣所以用的拼音),之前学习了tony老师的变量格式有点习惯了
#这里的声明和numbers=""我在这里不知道干嘛用的所以没写
sh zx.sh
2017-12-28