GNU findコマンドが有効なパスが「無効な引数」であることを知らせるのはなぜですか?

GNU findコマンドが有効なパスが「無効な引数」であることを知らせるのはなぜですか?

次のように重複する可能性があります。動作していないと判断されましたですが、私は新規会員なので、その質問に答えるのではなく、新しい質問をしたいと思います。別の方法でしたら、私とLMKを許してください。

findWindows 10 WSL / Debianシステムでさまざまなコマンドを実行すると、次のようになります。

kenny@pc-name:/mnt/v$ find . -type f ! -iname "*.avi"
find: ‘.’: Invalid argument
kenny@pc-name:/mnt/v$ find /mnt/v -type f ! -iname "*.avi"
find: ‘/mnt/v’: Invalid argument
...5 other attempts to use the same command with other completely-valid paths, with the same result
kenny@pc-name:/mnt/v$ find --version
find (GNU findutils) 4.6.0.225-235f
...other irrelevant lines spat out by --version

ご覧のとおり、この質問は上記のリンクとは異なります。はいGNU検索を実行してください。私が考えることができる唯一の説明は、これがベアメタルで実行される純粋なDebianではなく、WSL / Debianシステムであるということです。

どんなアドバイスも本当にありがとうございます。ありがとうございます! :-)

修正する:@Wildcardのコメントの追加テスト結果は次のとおりです。

kenny@pc-name:/mnt/v$ find --help
Usage: find [-H] [-L] [-P] [-Olevel] [-D debugopts] [path...] [expression]

default path is the current directory; default expression is -print
expression may consist of: operators, options, tests, and actions:
operators (decreasing precedence; -and is implicit where no others are given):
      ( EXPR )   ! EXPR   -not EXPR   EXPR1 -a EXPR2   EXPR1 -and EXPR2
      EXPR1 -o EXPR2   EXPR1 -or EXPR2   EXPR1 , EXPR2
positional options (always true): -daystart -follow -regextype

normal options (always true, specified before other expressions):
      -depth --help -maxdepth LEVELS -mindepth LEVELS -mount -noleaf
      --version -xdev -ignore_readdir_race -noignore_readdir_race
tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N
      -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME
      -ilname PATTERN -iname PATTERN -inum N -iwholename PATTERN -iregex PATTERN
      -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE
      -nouser -nogroup -path PATTERN -perm [-/]MODE -regex PATTERN
      -readable -writable -executable
      -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N
      -used N -user NAME -xtype [bcdpfls]      -context CONTEXT

actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print
      -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit
      -exec COMMAND ; -exec COMMAND {} + -ok COMMAND ;
      -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;

Valid arguments for -D:
exec, opt, rates, search, stat, time, tree, all, help
Use '-D help' for a description of the options, or see find(1)

Please see also the documentation at http://www.gnu.org/software/findutils/.
You can report (and track progress on fixing) bugs in the "find"
program via the GNU findutils bug-reporting page at
https://savannah.gnu.org/bugs/?group=findutils or, if
you have no web access, by sending email to <[email protected]>.
kenny@pc-name:/mnt/v$ find /mnt/c/Users/Kenny/Desktop -type f -name *.txt
/mnt/c/Users/Kenny/Desktop/info.txt
/mnt/c/Users/Kenny/Desktop/phone.txt
/mnt/c/Users/Kenny/Desktop/Uber.txt
kenny@pc-name:/mnt/v$ find /mnt/c/Users/Kenny/Desktop -type f -iname *.txt
/mnt/c/Users/Kenny/Desktop/info.txt
/mnt/c/Users/Kenny/Desktop/phone.txt
/mnt/c/Users/Kenny/Desktop/test.TXT
/mnt/c/Users/Kenny/Desktop/Uber.txt
kenny@pc-name:/mnt/v$ find /mnt/c/Users/Kenny/Desktop -type f -not -iname *.txt
/mnt/c/Users/Kenny/Desktop/desktop.ini
/mnt/c/Users/Kenny/Desktop/test.AVI
/mnt/c/Users/Kenny/Desktop/test.MKV
/mnt/c/Users/Kenny/Desktop/test.MP4
/mnt/c/Users/Kenny/Desktop/test.PDF
kenny@pc-name:/mnt/v$ find /mnt/v -type f -not -iname *.txt
find: ‘/mnt/v’: Bad file descriptor
kenny@pc-name:/mnt/v$ find . -type f -not -iname *.txt
find: ‘.’: Bad file descriptor

見てみfindましょうC:ドライブを繰り返して正しいファイルを見つけるのに問題はありません。問題はsudo mount -t drvfs '\\192.168.1.1\Videos' /mnt/v。 tこのWSLシステムに他の変更を適用してください! :S

ベストアンサー1

おすすめ記事