xdg-открыть несколько файлов без расширения - PullRequest
0 голосов
/ 25 февраля 2019

Я хочу открыть несколько файлов с помощью xdg-open со следующими кодами

me@host:~/Downloads$ find . -type f -iregex "./[^.]*"
./3ed090f2dde306e5e9f7200f1022a2c3
./ebd9863a73a5ef22344550a650d169a1
./edbdb765d87586fda75c4287a1e9ea1e
./d9e39bfe0a907ffb580a975d8c8719d2
./2b9cc942c04a8063bd8d4d8fd98814d9
./f5938dd24367ffaf766ef99928660786
./a51accbbf14c8a05cb82caa7d8bec0c6
./0820fb50b412f8e40f63b3bea12e9fb5
./53ef22110569d46b445a1e908a7ae88f
./61ee21f83a33b91674926daf70c34947

Попробуйте открыть их

me@host:~/Downloads$ find . -type f -iregex "./[^.]*" | xargs xdg-open 
xdg-open: unexpected argument './ebd9863a73a5ef22344550a650d169a1'
Try 'xdg-open --help' for more information.
me@host:~/Downloads$ find . -type f -iregex "./[^.]*" -print0| xargs -0  xdg-open 
xdg-open: unexpected argument './ebd9863a73a5ef22344550a650d169a1'
Try 'xdg-open --help' for more information.

В чем проблема с моим использованием xdg-open?

...