in reply to Re^2: creating valid paths for Path::Tiny
in thread creating valid paths for Path::Tiny
### does this^^^ have a Path::Tiny equivalent?
Yes. It is the absolute method.
#!/usr/bin/env perl use strict; use warnings; use Path::Tiny; my $abs = path(__FILE__)->absolute; print "$abs\n";
|
|---|