发布时间:2019-03-30 17:48:05
shell下生成cscope文件find . -name "*.[ch]" > cscope.filescscope -bk -i cscope.files或者cscope -Rbqgvim cscope Keybindings:nmap s :cs find s =expand("")nmap g :cs find g =expand("")nmap c :cs find c =expand("")nmap t :cs find t =expand("")nmap e :cs find e =expand("")nmap f :cs find f .........【阅读全文】
发布时间:2019-03-30 17:08:06
-----------------------------------------------bash参数处理#!/bin/bash -fargc=("$#")#echo $argcif [ $argc -ne 2 ]; then echo "Usage: mkimg.sh com in_file" exitficom=$1binname=$2-----------------------------------------------cshell参数处理#!/bin/csh -f.........【阅读全文】