linux command wrap
Posted lvmxh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux command wrap相关的知识,希望对你有一定的参考价值。
$ cat tmux-attach
1 if [ -z $1 ] ; then 2 tmux ls 3 else 4 tmux attach -t $1 5 fi
$ cat /usr/bin/cscope-go.sh
1 #!/bin/bash 2 3 # generate cscope index files in current directory 4 # the generated cscope index files also include go standard packages 5 6 if [ "$GOROOT" = "" ] ; then 7 echo "GOROOT is not set" 8 GOROOT=`go env |grep "GOROOT" |cut -d "=" -f2` 9 GOROOT=${GOROOT#\"} 10 GOROOT=${GOROOT%\"} 11 fi 12 echo $GOROOT 13 14 go_pkg_src=$GOROOT/pkg 15 16 find $go_pkg_src -name "*.go" -print > cscope.files 17 find . -name "*.go" -print >> cscope.files 18 19 if cscope -b -k; then 20 echo "Done" 21 else 22 echo "Failed" 23 exit 1 24 fi
以上是关于linux command wrap的主要内容,如果未能解决你的问题,请参考以下文章
mvn命令异常:An error has occurred in Javadoc report generation: Unable to find javadoc command异常已解决(代码片段
mvn命令异常:An error has occurred in Javadoc report generation: Unable to find javadoc command异常已解决(代码片段