15. 编写一个bash for语句,遍历系
21 查阅
15. 编写一个bash for语句,遍历系统中的所有用户。
参考答案:
遍历系统中所有用户名的for语句如下: for username in $ (getent passwd | cut -f 1 -d ":")
15. 编写一个bash for语句,遍历系统中的所有用户。
参考答案:
遍历系统中所有用户名的for语句如下: for username in $ (getent passwd | cut -f 1 -d ":")