Write a bash script to find the people who spend at least $6…

Write a bash script to find the people who spend at least $63.00 in any category. Just display first name and Phone.   Assume empData.csv has at least 100 records with the following format:  FirstName|LastName|Phone|Expense1|Expense2|Expense3. Rachel|Miller|(111)222-3333|$100.00|$9.00|$27.50 John|Doe|(771)202-3783|$10.00|$43.00|$181.50 David|Wilson|(991)302-8785|$200.00|$63.00|$281.50

D,FirstName,LastName,Salary, Age,HireDate,Country101,John,Sm…

D,FirstName,LastName,Salary, Age,HireDate,Country101,John,Smith,55000,30,2022-03-15,USA102,Emily,Johnson,62000,28,2021-11-22,Canada103,Michael,Brown,48000,35,2023-01-10,UK104,Sarah,Davis,58000,31,2022-05-20,Australia105,David,Anderson,60000,29,2022-09-05,Germany106,Lisa,Williams,52000,33,2022-02-18,France107,Robert,Miller,54000,32,2021-12-08,Spain108,Mary,Jones,51000,34,2023-03-25,Italy109,William,Clark,53000,27,2022-07-14,Japan110,Olivia,Harris,59000,30,2022-04-01,China Consider the above dummy data with the file name “empData.csv” Which of the following commands will list the record of the employee between the ages 30 and 39?

Assume “record.txt”  has several employees information such…

Assume “record.txt”  has several employees information such as name, email, mobile, street, city, etc.  Write a Bash script that takes the “record.txt”   file as input from the command line. Find mobile numbers from the text file and display all mobile numbers only. The mobile number format is 123-45-67890.