mirror of
https://github.com/scopatz/nanorc
synced 2024-11-21 16:15:40 +01:00
Added automatic installer
This commit is contained in:
parent
a345c2bd7b
commit
b627b455ae
20
install.sh
Executable file
20
install.sh
Executable file
@ -0,0 +1,20 @@
|
||||
wget -O /tmp/nanorc.zip https://github.com/scopatz/nanorc/archive/master.zip
|
||||
if [ ! -d ~/.nano/ ]
|
||||
then
|
||||
mkdir ~/.nano/
|
||||
fi
|
||||
|
||||
cd ~/.nano/
|
||||
|
||||
unzip -o "/tmp/nanorc.zip"
|
||||
mv nanorc-master/* ./
|
||||
rm -rf nanorc-master
|
||||
|
||||
if [ ! -f ~/.nanorc ]
|
||||
then
|
||||
touch ~/.nanorc
|
||||
fi
|
||||
|
||||
cat ~/.nano/nanorc >> ~/.nanorc
|
||||
sort -u ~/.nanorc > /tmp/nanorc2
|
||||
cat /tmp/nanorc2 > ~/.nanorc
|
Loading…
Reference in New Issue
Block a user