On Sun, 7 Aug 2011 00:09:35 -0400, Eric Bélanger wrote:
+ fullname=$(echo $pkgurl | sed 's#^file://##')
You can replace this with this bash internal syntax:
fullname=${pkgurl#file://}
Kind regards,
Andrwe
On Sun, 7 Aug 2011 00:09:35 -0400, Eric Bélanger wrote:
+ fullname=$(echo $pkgurl | sed 's#^file://##')
You can replace this with this bash internal syntax:
fullname=${pkgurl#file://}
Kind regards,
Andrwe