in reply to save hash to file?

The simple answer is use the core module Storable. Example from the documentation:

use Storable; store \%table, 'file'; $hashref = retrieve('file');