find:表現上の問題と解決策の前に、道筋がなければならない
2022-02-15 08:45:39
findコマンドで探す場合
例えば、コマンド
find /home -name w*
を次のようにします。
find: paths must precede expression: webfd
Usage: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path...] [expression]
エラーが発生するので、ドキュメントで確認してください
find: パスは式の前になければならない
使用法: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] を実行する。
[パス...] [式]。
これは、*.c がシェルによって展開された結果、find されたためです。
実際にこのようなコマンドラインを受信します。
find . -name bigram.c code.c frcode.c locate.c -print
そのコマンドは、もちろんうまくいきません。
このように、パターンを引用符で囲むか、ワイルドカードをエスケープする必要があります。
$ find . -name '*.c' -print
or
$ find . -name \*.c -print
That is, this prompt appears because the asterisk represents all the files in the current directory, and then is used as a shell to expand
This is what the web says about adding single quotes when searching for multiple files
That is, this prompt appears because the asterisk represents all the files in the current directory, and then is used as a shell to expand
This is what the web says about adding single quotes when searching for multiple files
関連
-
エラー解決:bash: nvm: コマンドが見つかりません。
-
undefinedmakefile:4: *** セパレータがありません。
-
configure: error: no acceptable C compiler found in $PATH 問題は解決しました。
-
解決済み gpg: 有効な OpenPGP データが見つかりません。
-
ImportError を解決してください: libcublas.so.9.0: 共有オブジェクトファイルを開くことができません。そのようなファイルはありません
-
Python3.xでprintを使用する際のエラー(SyntaxError: Missing parenthes in call to 'print')に対する解決策を公開しました。
-
AttributeError: モジュール 'tensorflow' には 'get_default_graph' という属性がありません。
-
makeの問題解決。*** ターゲットが指定されておらず、makefileも見つかりません。
-
Werror=unused-but-set-variableエラーの解決法
-
jmeterツールです。JMETER_HOME 環境変数が定義されていない 問題解決
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
ssh@host:""ssh スイッチで他のマシンで複数のコマンドを実行する。stdin はターミナルではないので、擬似ターミナルは割り当てられない。
-
コマンドラインからDSOが見つからないことに遭遇した
-
解決策 VMの初期化中にエラーが発生しました java/lang/NoClassDefFoundError: java/lang/Object
-
ImportError: libSM.so.6: cannot open shared object file: そのようなファイルやディレクトリはありません 解決方法
-
Pythonの各種実行時エラー(SyntaxError : invalid syntaxなど)。
-
を作ってください。*** ターゲットが指定されておらず、makefileも見つかりませんでした。
-
セグメンテーションフォールト(コアダンプ)の解決法
-
linux ubuntu 'string' はこのスコープで宣言されていない Parse
-
Ubuntu 20.04 プロキシ設定
-
コンパイル時の警告をなくす(Warning)