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
It currently uses the command template "ls | grep -i -E '%s' | xargs ls"to generate the file list, but xargs by default uses arbitrary whitespace as the delimiter, so this breaks up file names with spaces. I suggest changing the last part to xargs -d '\n' ls, which will work better (it still doesn't protect you against file names with newlines in them...).
The text was updated successfully, but these errors were encountered:
It currently uses the command template
"ls | grep -i -E '%s' | xargs ls"
to generate the file list, butxargs
by default uses arbitrary whitespace as the delimiter, so this breaks up file names with spaces. I suggest changing the last part toxargs -d '\n' ls
, which will work better (it still doesn't protect you against file names with newlines in them...).The text was updated successfully, but these errors were encountered: