Was soll ich tun, wenn Linux die Datei nicht finden kann?
Das Linux-Quell-Shell-Skript zeigt an, dass die Datei nicht gefunden werden kann
Beispiel:
[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
Zuerst dachte ich, es gäbe ein Berechtigungsproblem, und dann gab ich es Erlaubnis, aber das Ergebnis war immer noch das gleiche
man source, fand den Grund. Das Problem, den Dateinamen als Quelle zu finden.
Der Quellbefehl sucht nach einem Dateinamen in der aktuellen Shell-Umgebung. Wenn kein Backslash vorhanden ist, wird er im Pfad gefunden.
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.
Die folgenden Methoden sind verfügbar:
1. Fügen Sie das Verzeichnis, in dem sich das Skript befindet, zu PATH hinzu
2. Fügen Sie einen relativen Pfad oder absoluten Pfad hinzu
3. Auch das aktuelle Verzeichnis muss hinzugefügt werden./
Empfohlen: "Linux Tutorial"
Das obige ist der detaillierte Inhalt vonWas tun, wenn Linux die Datei nicht finden kann?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!