Linux bash函数,跳转到子目录

前言:

Linux中,有个维护内核代码的同事嫌一层层cd太麻烦,比如要到某个include目录,要cd ./xx/xx/xx/xx/xx/xx/incldue,于是帮助写了个脚本函数可以直接跳到子目录。

函数

function cdx() {

	local szroot=.
	local sztarg=""
		if [ $# -gt 1 ]; then
		if [ -d $1 ]; then szroot=$1; sztarg=$2; else szroot=$2; sztarg=$1; fi
		elif [ $# -gt 0 ]; then
	 	sztarg=$1;
	fi
	if [ "x$sztarg" = "x" ]; then
		echo "Usage: zz root-directory target-directory"	
	else
		sztmp=$(echo $sztarg | awk '{s=$0; do{match(s,/\//); if(RLENGTH>0){s=substr(s,RSTART+1);}}while(RLENGTH>0); printf(s); }')
			slist=$(find $szroot -type d -name "*$sztmp" | grep "$sztarg$");
		total=0;
		sztmp="";
			for s in $slist;
			do
			sztmp=$s; total=$(expr $total "+" 1);
			done
		if [ $total -gt 1 ]; then
			for s in $slist; do echo $s | grep --color "$sztarg"; done
		else
			if [ -d $s ]; then cd $sztmp; fi
		fi
	fi
}

用法:

vi ~/.bash_profile  # 编辑配置文件
# 将上述函数贴入.bash_profile
# 保存,然后,刷新
source ~/.bash_profile

执行

cdx [root-directory] target-directory

例子:

cdx ~/3.9/kernel x86

你可能感兴趣的:(Linux,知识&技巧)