From 487aee201190337e05f29ca83b4554c5b913057a Mon Sep 17 00:00:00 2001 From: Takuma Tsubo Date: Tue, 29 Apr 2025 15:49:01 +0900 Subject: [PATCH] =?UTF-8?q?=E8=AA=B2=E9=A1=8C=E6=8F=90=E5=87=BA=E7=94=A8?= =?UTF-8?q?=E3=81=AE=E3=82=B7=E3=82=A7=E3=83=AB=E3=82=92=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- copy_to_subject.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 copy_to_subject.sh diff --git a/copy_to_subject.sh b/copy_to_subject.sh new file mode 100755 index 0000000..261571a --- /dev/null +++ b/copy_to_subject.sh @@ -0,0 +1,11 @@ +#!/bin/bash +echo -n "dir?>" +read input + +mkdir -p $input \ +&& cp -r src/ $input \ +&& cp -r inc/ $input \ +&& cp -r lib/ $input \ +&& cp Makefile $input + +echo "output done!"