Improved Ag installation
This commit is contained in:
parent
d5e12978bb
commit
6953eb5d3f
1 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
#!/bin/bash
|
||||
echo " - Installing Ag (The Silver Searcher) - "
|
||||
sudo apt-get install silversearcher-ag
|
||||
echo "🤔 Checking for Ag (The Silver Searcher) installation"
|
||||
if ag -V; then
|
||||
echo "🥰 Ag is already installed"
|
||||
else
|
||||
echo "🤩 Installing Ag (The Silver Searcher)"
|
||||
sudo apt-get install silversearcher-ag
|
||||
echo "👍 Ag Installed"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue