18:58 >perl -w -Mstrict -MData::Dumper -E "my $foo; say Dumper($foo); if (exists $foo->{bar}{anything}{you}{want} ) { say 'hi' } say Dumper($foo);" $VAR1 = undef; $VAR1 = { 'bar' => { 'anything' => { 'you' => {} } } }; 19:00 >