Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: -type: -f: unknown type

by Anonymous Monk
on Oct 30, 2012 at 23:37 UTC ( [id://1001577]=note: print w/replies, xml ) Need Help??


in reply to -type: -f: unknown type

Why are you using qx instead of File::Find::find()?

$ find2perl $filepath_root -name main.xml -type -f

#! c:\perl\5.14.1\bin\MSWin32-x86-multi-thread\perl.exe -w eval 'exec c:\perl\5.14.1\bin\MSWin32-x86-multi-thread\perl.exe -S + $0 ${1+"$@"}' if 0; #$running_under_some_shell use strict; use File::Find (); # Set the variable $File::Find::dont_use_nlink if you're using AFS, # since AFS cheats. # for the convenience of &wanted calls, including -eval statements: use vars qw/*name *dir *prune/; *name = *File::Find::name; *dir = *File::Find::dir; *prune = *File::Find::prune; sub wanted; # Traverse desired filesystems File::Find::find({wanted => \&wanted}, $filepath_root); exit; sub wanted { my ($dev,$ino,$mode,$nlink,$uid,$gid); /^main\.xml\z/s && (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) && -f _ && print("$name\n"); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1001577]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-03-28 17:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found