1 Star 2 Fork 0

子午/zwtools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zwtbin 2.46 KB
一键复制 编辑 原始数据 按行查看 历史
lizheng 提交于 2024-09-09 14:08 . feat |> new
#!/bin/bash
# 通用路径
ROOT_PATH=$PATH_ZWTL_ROOT
WORK_PATH=$PATH_ZWTL_TBIN
# 专用文件
THIS_FILE=$ROOT_PATH/zwtbin
LINK_FILE=$PATH_ZWTL_INST/tb
# 导入文件
source $ROOT_PATH/tools/scripts/utils
source $ROOT_PATH/tools/scripts/com_x
########################################################################################################
# 打印用法
########################################################################################################
function print_usage()
{
echo "[Usage]: "
printf "%-30s%-50s\n" " tb -init" "init tmp bin"
printf "%-30s%-50s\n" " tb + <bin/elf>" "add bin"
printf "%-30s%-50s\n" " tb -x <>" "tb -x"
}
########################################################################################################
# 打印用法
########################################################################################################
function tbin_init()
{
ln -s $THIS_FILE $LINK_FILE 2> /dev/null
}
########################################################################################################
# 初始化脚本
########################################################################################################
function tbin_init_spt()
{
sp app tb
}
########################################################################################################
# 添加文件
########################################################################################################
function tbin_add()
{
mv $1 $WORK_PATH
}
########################################################################################################
# zbin文件
########################################################################################################
function zbin_add()
{
mv $1 $ZBIN_PATH
}
########################################################################################################
# 程序入口
########################################################################################################
function zwtbin_entry()
{
# 如果没写参数, 或帮助命令, 则打印帮助信息
if [ $# = 0 ] || [ $1 = '-h' ] || [ $1 = '--help' ];then
print_usage
exit 1
fi
case $1 in
-init) tbin_init ;;
-cd) cd_dir $WORK_PATH ;;
-edit) edit_file $THIS_FILE ;;
-mv) do_x_rename $@ ;;
-rm) do_x_remove $@ ;;
-x) do_x_cat $@ ;;
-e) do_x_edit $WORK_PATH $@ ;;
.) tbin_init_spt ;;
+) tbin_add $2 ;;
*) tbin_add $@ ;;
esac
}
zwtbin_entry $@
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zw_note/zwtools.git
git@gitee.com:zw_note/zwtools.git
zw_note
zwtools
zwtools
master

搜索帮助