logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

File::HomeDir::Unix - Find your home and other directories on legacy Unix

Authors

Adam Kennedy <adamk@cpan.org> Sean M. Burke <sburke@cpan.org>

Description

This module provides implementations for determining common user directories. In normal usage this module will always be used via File::HomeDir.

Name

File::HomeDir::Unix - Find your home and other directories on legacy Unix

See Also

File::HomeDir, File::HomeDir::Win32 (legacy)

Support

See the support section the main File::HomeDir module.

Synopsis

use File::HomeDir; # Find directories for the current user $home = File::HomeDir->my_home; # /home/mylogin $desktop = File::HomeDir->my_desktop; # All of these will... $docs = File::HomeDir->my_documents; # ...default to home... $music = File::HomeDir->my_music; # ...directory $pics = File::HomeDir->my_pictures; # $videos = File::HomeDir->my_videos; # $data = File::HomeDir->my_data; #

See Also