Skip to content

Instantly share code, notes, and snippets.

@kengoon
Created June 5, 2021 10:58
Show Gist options
  • Save kengoon/73e1197cc64e90c58c5988cf1400c0e9 to your computer and use it in GitHub Desktop.
Save kengoon/73e1197cc64e90c58c5988cf1400c0e9 to your computer and use it in GitHub Desktop.
run ppa on parrot os and kali os
#!/bin/bash
if [ $# -eq 1 ]
NM=`uname -a && date`
NAME=`echo $NM | md5sum | cut -f1 -d" "`
then
ppa_name=`echo "$1" | cut -d":" -f2 -s`
if [ -z "$ppa_name" ]
then
echo "PPA name not found"
echo "Utility to add PPA repositories in your debian machine"
echo "$0 ppa:user/ppa-name"
else
echo "$ppa_name"
echo "deb http://ppa.launchpad.net/$ppa_name/ubuntu focal main" >> /etc/apt/sources.list
apt-get update >> /dev/null 2> /tmp/${NAME}_apt_add_key.txt
key=`cat /tmp/${NAME}_apt_add_key.txt | cut -d":" -f6 | cut -d" " -f3`
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $key
#rm -rf /tmp/${NAME}_apt_add_key.txt
fi
else
echo "Utility to add PPA repositories in your debian machine"
echo "$0 ppa:user/ppa-name"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment