Given the file products.txt contains: TV,500 / Laptop,1000 /…
Given the file products.txt contains: TV,500 / Laptop,1000 / Fan,50 (each on its own line, comma-separated). What is the output of: awk -F “,” ‘$2 > 100 { print $1 }’ products.txt
Read Details