Below is a file named sites.txt:
google is good
yahoo is dying
microsoft is ok
faceBook is vulnerable
Script::
#!/bin/bash
site="facebook"
awk -v s="$site" 'BEGIN {IGNORECASE = 1} /s/' sites.txt
But the above command does not return any output. How can I use a shell variable inside the begin block to display correct output.