Posts

Showing posts from January, 2022

Health Tips: To control gout flare up

Health Tips: To control gout flare up   1) Do not eat anything with medium or higher purine content   // This can prevent uric acid from going down to your feet 2) Bind your feet if you have gout flare up on your feet (flat of your feet/toes).  2a) You can purchase knee support to be used on your feet.

Linux Tips: Display targeted contents of all files on current directory

Linux Tips: Display targeted contents of all files on current directory   Part 1:-   // Just replace abcdefg with your required keywords // Just use the following command:   #  grep -rn . -e "abcdefg" Part 2:- // If you want the above contents to be transferred onto a file // Do the following:   # grep -rn . -e "" >files.txt Part 3:- // If you want the content on files.txt to be sorted // Do the following (using natural sort): # sort -V files.txt