(not set) | |
Blog | (not set) |
Website | (not set) |
1
score
|
Take values from a list (file) and search them on another file$ for ITEM in $(cat values_to_search.txt); do (egrep $ITEM full_values_list.txt && echo $ITEM found) | grep "found" >> exit_FOUND.txt; done |