diff --git a/build_mv.sh b/build_mv.sh index d0be658..2cf1181 100644 --- a/build_mv.sh +++ b/build_mv.sh @@ -47,7 +47,13 @@ function MV() { $STRIP ./rm_ } +install_() { + cp rm_ /bin/ +} +uninstall_() { + rm /bin/rm_ +} init @@ -57,5 +63,19 @@ if test "$@" = "clean"; then exit 0; fi +if test "$@" = "install"; then + install_ + exit 0; +fi + +if test "$@" = "uninstall"; then + uninstall_ + exit 0; +fi + + LIB MV + +exit 0 +20220401 \ No newline at end of file diff --git a/x64-rm_ b/x64-rm_ deleted file mode 100644 index 2eddf59..0000000 Binary files a/x64-rm_ and /dev/null differ