| Khisanth | f00li5h: $modi |
| Zoffix | FireBug++ |
| Caelum | anabain: you probably mean !~ rather than =~ ! |
| Epilog | Option A: rebuild using the oci 6i |
| f00li5h | Epilog: with my example path $ORACLE_HOME would be ora/10.1.1 |
| Epilog | Option B: install a different client? |
| Caelum | Epilog: rebuild, less chances of hosing your system |
| Epilog | yep |
| f00li5h | eval: $^W++; $foo = 'moose'; $foo =~ ! /o/; |
| buubot | f00li5h: |
| Epilog | and that would be nice... all the financial part is there :D inventories, reports, etc |
| anabain | Caelum, ($modi ~! /\\emph{(.*)?$linia(.*)?}/g) produces a syntax error |
| f00li5h | deparse: $^W++; $foo = 'moose'; $foo =~ ! /o/; |
| buubot | (++$^W); ($foo = 'moose'); ($foo =~ (!/o/)); |
| Khisanth | !~ not ~! |
| f00li5h | $foo matches the empty string s/ =~ ! / !~ /xg |
| anabain | oops |
| namedrisk | ($pasta,$modificado,$tamanho) = split(/\|/,$linha); then i have a chomp for $tamanho, and then i use $modificado to match as it is the last modified data of the file in case |
| f00li5h | namedrisk: tell me what the script is supposed to do in english words |
| namedrisk | mmm it is a list of files that i want to compare and copy to a new folder all the files that has a different modify date from folder B |
| f00li5h | namedrisk: rsync |
| namedrisk | windows :( |
| f00li5h | (windows)-- namedrisk: well, most of the code in the branches of if ($encontrado == 1) { is the same, so you can factor those out namedrisk: is it supposed to be recursive? |
| namedrisk | that part work like this: if the file is found on both folder then it will check for the modified date and if needed copy the file, if the file is not found it will just copy it |
| f00li5h | namedrisk: and also, you're missing; use strict; use warnings; from the top |
| namedrisk | indeed :( will fix it |
| f00li5h | namedrisk: okok, why are you doing this? you sound like someone needs a version controll system |
| action | CPAN upload: Class-Accessor-Grouped-0.04000 by CLACO |
| CPAN | upload: Class-Accessor-Grouped-0.04000 by CLACO |
| namedrisk | what i wanted to do is: verify 2 folders for files that folder A has and folder B dont and copy to a new folder and then verify what files folder A has that B also has and only copy the files that folder A has that are newer then what is in folder B does that make sense or sound crazy :P ? |
| f00li5h | yeahh it does a little bit namedrisk: so you are taking the newer (or added) files from one dir, and copying them to another |
| namedrisk | :) i was trying but i cant figure out why $modificado == $xxx dont match and if u see the example near the top |