#yyds干货盘点#shell进阶之shift与select相关技术

Posted 王华_linux

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#yyds干货盘点#shell进阶之shift与select相关技术相关的知识,希望对你有一定的参考价值。

1.循环控制命令 shift

shift [n] 用于将参量列表 list 左移指定次数,缺省为左移一次。参量列表 list 一旦被移动,最左端的那个参数就从列表中删除。while 循环遍历位置参量列表时,常用到 shift

[root@c7-147 ~]#help shift 
shift: shift [n]
Shift positional parameters.
Rename the positional parameters $N+1,$N+2 ... to $1,$2 ... If N is
not given, it is assumed to be 1.
Exit Status:
Returns success unless N is negative or greater than $#.

shift 创建用户账号

[root@c7-147 ~]#help test
test: test [expr]
-z STRING True if string is empty.
-n STRING
STRING True if string is not empty.

#创建用户

#yyds干货盘点#shell进阶之shift与select相关技术_用户账号


#yyds干货盘点#shell进阶之shift与select相关技术_创建用户_02


以上是关于#yyds干货盘点#shell进阶之shift与select相关技术的主要内容,如果未能解决你的问题,请参考以下文章

高频面试java高级进阶之锁?与CAS详解#yyds干货盘点#

shell内置命令 #yyds干货盘点#

#yyds干货盘点# linux命令 shopt

#yyds干货盘点#web安全day44:进阶!使用Nmap+Wireshark理解端口扫描

#yyds干货盘点# leetcode算法题:判断子序列

Java集合框架之 Collection 接口 #yyds干货盘点#