convert a log parsing program written in Perl into C sharp.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • karry086
    New Member
    • Feb 2013
    • 4

    convert a log parsing program written in Perl into C sharp.

    Following is a script written in perl :




    Code:
       #Number of bugs edited in Watson Express
    
    #find server*/watson*/log/ -name "watson*" -type f  -newer  ./tmpoldfile ! -newer  ./tmpnewfile  | xargs grep "WX Edit Bug" | awk '{print $8}' | sort | uniq  | wc -l
    
    // this is log parsing string in perl based on bash file.

    Need a log parsing program in C# for the same.....
    Last edited by acoder; Feb 13 '13, 11:59 AM. Reason: Please use [code] tags when posting code
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    This is not a code writing service but if you post what you've tried along with a description of what is wrong with the code, we can help guide you to an answer.

    Comment

    Working...