install/clean scripts
This commit is contained in:
parent
fa68b20dfb
commit
c79b2e03d2
19
clean.sh
Normal file
19
clean.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
for i in `ls`
|
||||
do
|
||||
case $i in
|
||||
README*)
|
||||
;;
|
||||
LICENSE*)
|
||||
;;
|
||||
install*)
|
||||
;;
|
||||
clean*)
|
||||
;;
|
||||
*)
|
||||
echo "Borrando configuración de $i..."
|
||||
sh $i/clean.sh
|
||||
;;
|
||||
esac
|
||||
done
|
19
install.sh
Normal file
19
install.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
for i in `ls`
|
||||
do
|
||||
case $i in
|
||||
README*)
|
||||
;;
|
||||
LICENSE*)
|
||||
;;
|
||||
install*)
|
||||
;;
|
||||
clean*)
|
||||
;;
|
||||
*)
|
||||
echo "Instalando configuración de $i..."
|
||||
sh $i/install.sh
|
||||
;;
|
||||
esac
|
||||
done
|
5
nvim/clean.sh
Normal file
5
nvim/clean.sh
Normal file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
rm -rf ~/.config/nvim
|
||||
rm -rf ~/.local/share/nvim
|
||||
rm -rf ~/.cache/nvim
|
Loading…
Reference in New Issue
Block a user