linux - Usage of asterisk at the end of command -
i know asterisk used in regular expressions, meaning of @ end of line?
find . -type f | grep -sl 'word' *   i know can similar results using
find . -type f | xargs grep -sl 'while'      
the asterisk * @ end used check in list of files in directory in lexicographic order.
Comments
Post a Comment