Open snowman opened 3 years ago
Currently, the output of sxiv is not terminated by null
sxiv
null
The -0 option corresponds to the -print0 option of find
-0
-print0
find
By using -0 option, sxiv output files using NUL as delimiter instead of newline
NUL
newline
$ find . -type f -name "*.png" -print0 | xargs -0 sxiv -0 -io | xargs -0 rm -vf
Duplicate of: #445
Description
Currently, the output of
sxiv
is not terminated bynull
Expected
The
-0
option corresponds to the-print0
option offind
By using
-0
option,sxiv
output files usingNUL
as delimiter instead ofnewline