jcfp wrote: Indeed, automating that would make the instructions a bit more newbie-proof (albeit at the cost of becoming more susceptable for futile attempts to use the repo with unsupported/ancient versions of ubuntu). Done.
Code: Select all
echo "deb http://ppa.launchpad.net/jcfp/ubuntu $(lsb_release -c -s) main" | sudo tee -a /etc/apt/sources.list
Code: Select all
sander@ubuntu810:~$ lsb_release -c -s
intrepid
sander@ubuntu810:~$ lsb_release --help
Usage: lsb_release [options]
Options:
-h, --help show this help message and exit
-v, --version show LSB modules this system supports
-i, --id show distributor ID
-d, --description show description of this distribution
-r, --release show release number of this distribution
-c, --codename show code name of this distribution
-a, --all show all of the above information
-s, --short show requested information in short format
sander@ubuntu810:~$