in reply to Hash value being called as a Scalar?
The output shows that $ios_version is a reference to hash. Using double quotes is not the proper way to (s)print a composite data structure. One generic way is provided by Data::Dumper.
use Data::dumper; ... print Dumper $ios_version;
-- stefp
|
|---|