2013-10-01 Find out Debian release name in one line

Last edit

Summary: What you've always wanted: finding out the Debian release name in one commandline: $ lsb_release -a 2>/dev/null | tail -1 | awk '{print $2}'

Added:

> Edit: it's way easier than that:
> $ lsb_release -c -s


What you've always wanted: finding out the Debian release name in one commandline:

 $ lsb_release -a 2>/dev/null | tail -1 | awk  '{print $2}'

Edit: it's way easier than that:

 $ lsb_release  -c -s