Linux がファイルを見つけられない場合はどうすればよいですか?
Linux ソース シェル スクリプトで、ファイルが見つからないことが示されています。
例:
[root@localhost osc]# sh a.sh a.sh: line 4: source: 1.sh: file not found [root@localhost osc]# cat a.sh #!/bin/bash cd /data/osc/bin/ if [ -f 1.sh ];then source 1.sh fi
最初は、アクセス許可に問題があるのではないかと思い、次のようにしました。権限を与えましたが、結果は依然として同じでした
man ソースが原因を見つけました。ソース時にファイル名を見つける問題。
source ファイル名を検索するコマンドは現在のシェル環境で見つかります。バックスラッシュがない場合はパス内で見つかります。バックスラッシュがない場合は見つかりません。
source filename [arguments] Read and execute commands from filename in the current shell environment and return the exit status of the last command exe- cuted from filename. If filename does not contain a slash, file names in PATH are used to find the directory containing file- name. The file searched for in PATH need not be executable. When bash is not in posix mode, the current directory is searched if no file is found in PATH. If the sourcepath option to the shopt builtin command is turned off, the PATH is not searched. If any arguments are supplied, they become the positional parameters when filename is executed. Otherwise the positional parameters are unchanged. The return status is the status of the last command exited within the script (0 if no commands are executed), and false if filename is not found or cannot be read.
次の方法が利用可能です:
1. スクリプトが配置されているディレクトリを PATH
2. 相対パスまたは絶対パスを追加します
3. 現在のディレクトリも追加する必要があります。/
推奨: "Linux チュートリアル #"
以上がLinux がファイルを見つけられない場合の対処方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。