From cf6bf35af0518acca5a54098b1b0cbcd03d28e12 Mon Sep 17 00:00:00 2001 From: Aoran Zeng Date: Mon, 21 Jul 2025 01:13:46 +0800 Subject: [PATCH] Move to `run` --- tool/rawstr4c/{bin => run}/run.bat | 10 +++++----- tool/rawstr4c/{bin => run}/run.ps1 | 10 +++++----- tool/rawstr4c/{bin => run}/run.sh | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) rename tool/rawstr4c/{bin => run}/run.bat (72%) rename tool/rawstr4c/{bin => run}/run.ps1 (72%) rename tool/rawstr4c/{bin => run}/run.sh (73%) diff --git a/tool/rawstr4c/bin/run.bat b/tool/rawstr4c/run/run.bat similarity index 72% rename from tool/rawstr4c/bin/run.bat rename to tool/rawstr4c/run/run.bat index efeba91..5658761 100644 --- a/tool/rawstr4c/bin/run.bat +++ b/tool/rawstr4c/run/run.bat @@ -5,20 +5,20 @@ :: File Authors : Aoran Zeng :: Contributors : Nul None :: Created On : <2025-07-13> -:: Last Modified : <2025-07-13> +:: Last Modified : <2025-07-21> :: -:: Run rawstr4c.raku script +:: Run rawstr4c :: :: Usage: :: :: 用户必须在代码根目录中运行此文件 :: -:: %PREFIX%\bin\run.bat [--debug] +:: %PREFIX%\run\run.bat [--debug] :: -:: %PREFIX%\bin\run.bat [--debug] +:: %PREFIX%\run\run.bat [--debug] :: --------------------------------------------------------------- @echo off set PREFIX=tool\rawstr4c REM -I 选项必须在文件前面 -raku -I %PREFIX%\lib %PREFIX%\rawstr4c.raku %* +raku -I %PREFIX%\lib %PREFIX%\bin\rawstr4c %* diff --git a/tool/rawstr4c/bin/run.ps1 b/tool/rawstr4c/run/run.ps1 similarity index 72% rename from tool/rawstr4c/bin/run.ps1 rename to tool/rawstr4c/run/run.ps1 index 69008ba..dc9bfc1 100644 --- a/tool/rawstr4c/bin/run.ps1 +++ b/tool/rawstr4c/run/run.ps1 @@ -5,20 +5,20 @@ # File Authors : Aoran Zeng # Contributors : Nul None # Created On : <2025-07-12> -# Last Modified : <2025-07-13> +# Last Modified : <2025-07-21> # -# Run rawstr4c.raku script +# Run rawstr4c # # Usage: # # 用户必须在代码根目录中运行此文件 # -# $PREFIX\bin\run.ps1 [--debug] +# $PREFIX\run\run.ps1 [--debug] # -# $PREFIX\bin\run.ps1 [--debug] +# $PREFIX\run\run.ps1 [--debug] # --------------------------------------------------------------- $PREFIX = "tool/rawstr4c" # -I 选项必须在文件前面 -raku -I $PREFIX\lib $PREFIX\rawstr4c.raku $args +raku -I $PREFIX\lib $PREFIX\bin\rawstr4c $args diff --git a/tool/rawstr4c/bin/run.sh b/tool/rawstr4c/run/run.sh similarity index 73% rename from tool/rawstr4c/bin/run.sh rename to tool/rawstr4c/run/run.sh index 35e51f1..830bd31 100644 --- a/tool/rawstr4c/bin/run.sh +++ b/tool/rawstr4c/run/run.sh @@ -6,20 +6,20 @@ # File Authors : Aoran Zeng # Contributors : Nul None # Created On : <2025-07-13> -# Last Modified : <2025-07-13> +# Last Modified : <2025-07-21> # -# Run rawstr4c.raku script +# Run rawstr4c # # Usage: # # 用户必须在代码根目录中运行此文件! # -# $PREFIX/bin/run.sh [--debug] +# $PREFIX/run/run.sh [--debug] # -# $PREFIX/bin/run.sh [--debug] +# $PREFIX/run/run.sh [--debug] # --------------------------------------------------------------- PREFIX="tool/rawstr4c" # -I 选项必须在文件前面 -raku -I $PREFIX/lib $PREFIX/rawstr4c.raku "$@" +raku -I $PREFIX/lib $PREFIX/bin/rawstr4c "$@"