FC1 vs FC2 vs FC3

Rudi Chiarito nutello at sweetness.com
Thu Jan 13 21:37:09 UTC 2005


On Thu, Jan 13, 2005 at 09:55:26PM +0100, André Kelpe wrote:
> cut -d ' ' -f4 /etc/fedora-release

Needless use of an external binary!
With bash:

VER=($(< /etc/fedora-release))

You can now just use array element VER[3]:

  echo ${VER[3]}

or

  VER=${VER[3]}

-- 
Rudi




More information about the fedora-devel-list mailing list