material/linux/file/backup_etc.sh
2024-10-27 09:23:50 +00:00

15 lines
254 B
Bash

#!/bin/bash
#
PATH=/bin:/sbin:/usr/local/bin
export PATH
read -p "Please input (in/out)" cz
if [ ${cz} == "in" ]; then
cp -v ~/.profile ~/.bashrc ~/.vimrc ./
cp -rv ~/.ssh ./
fi
if [ ${cz} == "out" ]; then
cp -iv ./.profile ./.bashrc ./.vimrc ~/
fi