Welcome Guest. Sign in or Signup

2 Answers

Searching Interface File

Asked by: 1869 views UNIX

Your PeopleSoft system receives an invoice file from a third party system. The file is processed and moved into a repository that contains few hundred such files. You want to search this repository of a particular Invoice Number. How would you do that?

Related Questions

2 Answers



  1. candidate on May 12, 2012 Reply

    We can use the grep command for performing this search.

    The below command will search all .txt files in the particular folder for the

    grep invoice_number *.txt

    0 Votes Thumb up 0 Votes Thumb down 0 Votes



  2. lilsam on Jul 14, 2016 Reply

    Suppose, we have a file for invoice # INV01. Below command will help to list if a file is present for this invoice:

    ls INV01*.txt

    0 Votes Thumb up 0 Votes Thumb down 0 Votes


Answer Question