On 04/05/2013 04:25 AM, Roy Sigurd Karlsbakk wrote: >> for x in /sys/block/sd[cdfghij] ; do echo $x: $(< $x/device/timeout) ; >> done >timeout.txt > > I never made that one work. This one did, though > > # for x in /sys/block/sd[cdfghij] ; do echo -n "$x: "; cat $x/device/timeout; done > > Vennlige hilsener / Best regards Curious. Works fine here: # for x in /sys/block/sd[abcd] ; do echo $x $(< $x/device/timeout) ; done /sys/block/sda 30 /sys/block/sdb 30 /sys/block/sdc 30 /sys/block/sdd 30 Not that it matters, much. Use what works for you. Phil -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html