TCS PRA 1 JUN- Unix: Orders and Customer
TCS PRA 1 JUN- Unix: Orders and Customer Order details are stored in an input file in the following format: Order Id, Item name, Quantity, Customer 0123;Pen;30;Ananata Gogol 0778;Pencil;200;Biraj Phukan 0234;Pen Holder;230;Haren Borah 0891;Pen;60;Juthika 07111;Eraser;100;Anjana 012221;Water Colour;20;Nirupam Write the unix command to find the Order id of the orders placed by customers whose name starts with A or N or H . e.g. once you command is run, if the input file contains the names given above, the output will be: 0123 0234 07111 012221 Refer to the example below for more clarity on input and output format. The input file name will be provided as command line argument when the script containing your command will run. ...