1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 22:10:45 +00:00
wting_autojump/install.sh

28 lines
1.2 KiB
Bash
Raw Normal View History

2009-03-27 11:04:59 +00:00
sudo mkdir -p /usr/share/autojump/
sudo cp icon.png /usr/share/autojump/
sudo cp jumpapplet /usr/bin/
2009-02-14 17:00:54 +00:00
sudo cp autojump /usr/bin/
sudo cp autojump.1 /usr/share/man/man1/
2009-02-14 20:35:32 +00:00
if [ -d "/etc/profile.d" ]; then
2009-02-19 21:09:59 +00:00
sudo cp autojump.bash /etc/profile.d/
2009-02-14 20:35:32 +00:00
sudo cp autojump.sh /etc/profile.d/
echo "Remember to add the line"
echo " source /etc/profile"
echo "to your ~/.bashrc if it's not there already"
# TODO intelligently source /etc/profile for them if the line isn't already in their .bashrc
else
echo "Your distribution does not have a /etc/profile.d directory, the default that we install one of the scripts to. Would you like us to copy it into your ~/.bashrc file to make it work? (If you have done this once before, delete the old version before doing it again.) [y/n]"
read ans
if [ ${#ans} -gt 0 ]; then
if [ $ans = "y" -o $ans = "Y" -o $ans = "yes" -o $ans = "Yes" ]; then
echo "" >> ~/.bashrc
echo "#autojump" >> ~/.bashrc
2009-02-19 21:09:59 +00:00
cat autojump.bash >> ~/.bashrc
else
echo "Then you need to put autojump.sh, or the code from it, somewhere where it will get read. Good luck!"
fi
2009-02-14 20:35:32 +00:00
else
echo "Then you need to put autojump.sh, or the code from it, somewhere where it will get read. Good luck!"
2009-02-14 20:35:32 +00:00
fi
2009-02-19 21:09:59 +00:00
fi