[OT] shell variable assignment problemn

Luciano Rocha strange at nsk.no-ip.org
Fri May 30 14:55:57 UTC 2008


On Fri, May 30, 2008 at 04:39:48PM +0200, Gianluca Cecchi wrote:
> Problem I'm able to understand:
> Suppose I have
> $NUMDISKS that can be 1 or 2 ... or n
> and
> $DISKS that can be
> sda, or
> sda sdb
> or sda sdb sdc
> (so a string with the didks separated by space)

Personally, I'd go with arrays:
declare -a drives
drives=($disks)

eg:
$ disks="sda sdb sdc"
$ drives=($disks)
$ echo ${#drives[@]}
3
$ echo ${drives[2]}
sdc
$ for d in ${drives[@]}; do echo /dev/$d; done
/dev/sda
/dev/sdb
/dev/sdc

> if I script
> 
> for i in $(seq 1 $NUMDISKS)
> do
>       DRIVE${i}="$(echo $DISKS | cut -d ' ' -f ${i})"
> done
> 

Use this:
...
	eval DRIVE${i}="$(echo $DISKS | cut -d ' ' -f ${i})"

-- 
lfr
0/0
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20080530/f916d4a8/attachment-0001.sig>


More information about the fedora-list mailing list