linuxtool/Menus/Install.sh

19 lines
463 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
declare path
echo "请输入脚本的安装位置"
read -p "默认 /var/script" path
if [[ -z $path ]];then
path="/var/script"
fi
rm -rf "$path/linuxtoo"
wget https://g.lsy22.com/lsy/LinuxTool/archive/master.tar.gz -O aa -P $path
tar -zxf "$path/aa" -C $path
rm "$path/aa"
chmod +x "$path/linuxtool/Run.sh"
sed -i /alias tool.*/d "${HOME}/.bashrc"
echo "alias tool=$path/linuxtool/Run.sh" | cat >> "${HOME}/.bashrc"
source "${HOME}/.bashrc"