代码拉取完成,页面将自动刷新
#!/bin/bash
# 通用路径
ROOT_PATH=$PATH_ZWTL_ROOT
CORE_PATH=$ROOT_PATH/core/zwpp
# 专用文件
THIS_FILE=$ROOT_PATH/zwpp
LINK_FILE=$PATH_ZWTL_INST/pp
# 导入文件
source $ROOT_PATH/tools/scripts/utils
source $ROOT_PATH/tools/scripts/com_p
########################################################################################################
# 帮助选项
########################################################################################################
function print_usage()
{
echo "[Usage]: "
printf "%-20s%-50s\n" " pp <key>" "match all file to key"
printf "%-20s%-50s\n" " pp <file> <key>" "match target file to key"
printf "%-20s%-50s\n" " pp -n" "print note help"
}
############################################################### propt
# 提示文件
function prompt_file()
{
cd ${CORE_PATH}
RES=$(find -name $1)
FILE=$CORE_PATH/$RES
if [ -f $FILE ]; then
cat $FILE
else
cd $CORE_PATH
grep --color=auto $1 * -nr
fi
}
# 提示上下文
function prompt_file_context()
{
cd ${CORE_PATH}
if [[ $# == 2 ]]; then
if [[ $2 =~ ^[0-9]+$ ]]; then
grep --color=auto $1 * -nr -A $2
exit
fi
fi
RES=$(find -name $1)
if [[ $# == 2 ]]; then
grep --color=auto $2 $RES -A 5
else
grep --color=auto $2 $RES -A $3
fi
}
# 提示
function do_prompt()
{
case $# in
1) prompt_file $@ ;;
*) prompt_file_context $@ ;;
esac
}
########################################################################################################
# 程序入口
########################################################################################################
function zwpp_entry()
{
# 如果没写参数, 或帮助命令, 则打印帮助信息
if [ $# = 0 ] || [ $1 = '-h' ] || [ $1 = '--help' ];then
print_usage
exit 1
fi
case $1 in
-h) print_usage ;;
-init) common_init ;;
-x) do_x $CORE_PATH $@ ;;
-e) p_edit $2 ;;
-edit) edit_file $THIS_FILE ;;
-cd) cd_dir $CORE_PATH ;;
-n) print_note_help ;;
-g) grep_file $2 ;;
-f) find_file $2 ;;
*) do_prompt $@ ;;
esac
}
zwpp_entry $@
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。