1 Star 2 Fork 0

子午/zwtools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zwp 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
lizheng 提交于 2024-11-12 15:05 . feat |> new
#!/bin/bash
# 通用路径
ROOT_PATH=$PATH_ZWTL_ROOT
CORE_PATH=$ROOT_PATH/core/zwp
# 专用文件
THIS_FILE=$ROOT_PATH/zwp
LINK_FILE=$PATH_ZWTL_INST/p
# 导入文件
source $ROOT_PATH/tools/scripts/utils
source $ROOT_PATH/tools/scripts/com_p
########################################################################################################
# 帮助选项
########################################################################################################
function print_usage()
{
echo "[Usage]: "
printf "%-20s%-50s\n" " p <key>" "match key"
printf "%-20s%-50s\n" " p <key> <num>" "match key whitch context"
}
############################################################### propt
# 提示文件
function do_prompt()
{
cd $CORE_PATH
if [[ $# == 1 ]]; then
grep --color=auto $1 * -nr -A 5
else
grep --color=auto $1 * -nr -A $2
fi
}
########################################################################################################
# 程序入口
########################################################################################################
function zwp_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
}
zwp_entry $@
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zw_note/zwtools.git
git@gitee.com:zw_note/zwtools.git
zw_note
zwtools
zwtools
master

搜索帮助