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!"