俄罗斯方块Shell版
◎Shell版俄罗斯方块,网上大神的作品,不服不行,直接看效果。
shell实现如下:
#!/bin/bash # Tetris Game # 10.21.2003 xhchen<[email]xhchen@winbond.com.tw[/email]> #APP declaration APP_NA...Continue reading >>
◎Shell版俄罗斯方块,网上大神的作品,不服不行,直接看效果。
shell实现如下:
#!/bin/bash # Tetris Game # 10.21.2003 xhchen<[email]xhchen@winbond.com.tw[/email]> #APP declaration APP_NA...Continue reading >>
生产实践:
查看系统的基础信息及负载,用于系统排错等
学习技巧:
cut、dmidecode、egrep等使用
脚本内容:
#!/bin/bash ############################################################ # $Name:&...Continue reading >>
生产实践:
harbor的安装脚本,值得参考借鉴
学习技巧:
函数,if判断,规范,颜色、提示输出
脚本内容:
#!/bin/bash #docker version: 1.11.2 #docker-compose version: 1.7.1&...Continue reading >>
生产实践:
用于openldap一键安装(centos6.6测试通过),批量导入删除用户,需先将slapd.conf配置文件配置好,放置家目录下即可
学习技巧:
函数,while循环
脚本内容:
#!/bin/bash #####################################################...Continue reading >>
shift:位置参数,shift默认是shift 1
Bash 定义了9个位置变量,从 $1 到 $9,这并不意味着用户在命令行只能使用9个参数,借助 shift 命令可以访问多于9个的参数。Shift 命令一次移动参数的个数由其所带的参数指定。例如当 shell 程序处理完前九个命令行参数后,可以使用 shift 9 命令把 $10 移到 $1。
shift介绍:http://www.jb51.ne...
Continue reading >>