- What are GFCI outlets? Plus 6 things you should never plug into one
- This 3-in-1 charger is a must-have accessory for Pixel owners - and it's on sale
- This Ring device is the only indoor security camera you'll ever need
- The Dark Side of Clickbait: How Fake Video Links Deliver Malware | McAfee Blog
- Stressed out? 91% of people feel better after doing this with their phones
Linux “Grep” && Windows “Findstr”
1. Filter a result 1.1 Classic example to filter a listing result. #Linux $ ls -ls | grep mkyong #Windows c:\> dir | findstr mkyong 1.2 Add ignore case, and filter the listing result with multiple strings. #Linux – Need ‘-E’ option and Uses “|” to separate multiple search strings. $ ls -ls | grep -iE “mkyong|music” #Windows – Use spaces to separate multiple search strings c:\> dir | findstr -i “mkyong music” 2. Search…
Read More