Suppose I have a PHP script that I call at the Linux command line
(Ubuntu), and it gets all the paths to files and directories that
exist inside of some directory. All this data gets stored in an array.
How do I get this array to another PHP shell script? Can I use pipe?
/etc/getAllPathsForD omain 'thesecondroad. org' | /etc/
findFilesUpdate dInLast24Hours
Is the syntax basically right? Is this how I should build it?
Comment