Skip to content

Instantly share code, notes, and snippets.

View johnbedeir's full-sized avatar
📚
Studying Everything

JohnyDev johnbedeir

📚
Studying Everything
View GitHub Profile
@johnbedeir
johnbedeir / install-sonar-scanner.sh
Created March 30, 2023 14:49 — forked from chetanppatil/install-sonar-scanner.sh
Install sonar-scanner in linux mint, ubuntu...
#!/bin/bash
cd /tmp || exit
echo "Downloading sonar-scanner....."
if [ -d "/tmp/sonar-scanner-cli-4.7.0.2747-linux.zip" ];then
sudo rm /tmp/sonar-scanner-cli-4.7.0.2747-linux.zip
fi
wget -q https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.7.0.2747-linux.zip
echo "Download completed."