- 论坛徽章:
- 8
|
本帖最后由 龙牙地主天 于 2018-05-31 13:26 编辑
回复 21# minzyyl
- #!/bin/bash
- user="$(whoami)"
- temp="/tmp/1"
- function file() {
- find /qs/project/*/*/*/ -maxdepth 1 -type d | awk -F'/' 'BEGIN{print "NO\tName"}$7~/'$1'/{print $6FS$7,$0 > "'$2'" ; print ++n"\t"$6FS$7}'
- }
- if [[ $1 == "" ]];then
- file $user $temp
- elif [[ $1 == "-u" && $2 != "" ]];then
- file $2 $temp
- elif [[ $1 != "" ]];then
- if [[ -f ${temp} ]];then
- while read j k
- do
- if [[ $1 == ${j} ]];then
- cd ${k} && source ${k}/project/cds/.cshrc
- fi
- done < ${temp}
- else
- echo "请优先查询用户!"
- fi
- else
- echo "command error!"
- exit 1
- fi
复制代码
|
|