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.
Read DetailsWrite 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: [Don’t use awk command] 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
Read Details