You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would be handy when you have a truly long list of files, possibly containing spaces, produced by a shell pipeline (e.g. FILES=$(find . -name '*.py' --print0 | xargs -0 grep -l '# type:')).
The text was updated successfully, but these errors were encountered:
For completeness sake and in case someone comes across this thread here, in bash the example from the original post then should be able to be made into the following one-liner using process substitution:
This would be handy when you have a truly long list of files, possibly containing spaces, produced by a shell pipeline (e.g.
FILES=$(find . -name '*.py' --print0 | xargs -0 grep -l '# type:')
).The text was updated successfully, but these errors were encountered: