LoginSignup
0
1

More than 3 years have passed since last update.

今日のbashエラー:No such file or directory(解決)

Last updated at Posted at 2020-01-16

Autosar単語帳(作業中)
https://qiita.com/kaizen_nagoya/items/0927727a94b157df2df8

macOS
$ docker run -v /Users/administrator/Downloads/autosar:/tmp/docker -it kaizenjapan/autosar /bin/bash

で出たエラー。ファイルは

cppdf.sh
!/bin/bash

cd adaptive  
cp ./19-11/*.pdf ../pdf
cd ..
cd classic-2
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-4
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-6
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-8
cp ./19-11/*.pdf ../pdf
cd ..  
cd standards    
cd adaptive
cp ./19-11/*.pdf ../../pdf  
cd ..
cd foundation
cp ./19-11/*.pdf .../../pdf
cd .../../
cd standards-3
cd classic
cp ./19-11/*.pdf ../../pdf
cd ..  
cd tests
cp ./1-2/*.pdf ../../pdf
cd ../../
cd classic
cp ./19-11/*.pdf ../pdf
cd ..   
cd classic-3
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-5
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-7
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-9
cp ./19-11/*.pdf ../pdf
cd ..  
cd standards-2
cd adaptive
cp ./19-11/*.pdf ../../pdf
cd ..  
cd classic
cp ./19-11/*.pdf ../../pdf
cd ../..

実行してみた。

#  chmod +x ./cppdf.sh
# ./cppdf.sh 
./cppdf.sh: line 1: !/bin/bash: No such file or directory
cp: target '.../../pdf' is not a directory
./cppdf.sh: line 24: cd: .../../: No such file or directory
./cppdf.sh: line 25: cd: standards-3: No such file or directory
./cppdf.sh: line 26: cd: classic: No such file or directory
./cppdf.sh: line 29: cd: tests: No such file or directory
cp: cannot stat './1-2/*.pdf': No such file or directory
cp: cannot stat './19-11/*.pdf': No such file or directory
./cppdf.sh: line 35: cd: classic-3: No such file or directory
cp: cannot stat './19-11/*.pdf': No such file or directory
./cppdf.sh: line 38: cd: classic-5: No such file or directory
cp: cannot stat './19-11/*.pdf': No such file or directory
./cppdf.sh: line 41: cd: classic-7: No such file or directory
cp: cannot stat './19-11/*.pdf': No such file or directory
./cppdf.sh: line 44: cd: classic-9: No such file or directory
cp: cannot stat './19-11/*.pdf': No such file or directory
./cppdf.sh: line 47: cd: standards-2: No such file or directory
./cppdf.sh: line 48: cd: adaptive: No such file or directory
cp: cannot stat './19-11/*.pdf': No such file or directory
./cppdf.sh: line 51: cd: classic: No such file or directory
cp: cannot stat './19-11/*.pdf': No such file or directory

間違い1

最初の行に#がなかった。

間違い2

ピリオド2つじゃなくて3つのところがあった。

cppdf.sh
#!/bin/bash

cd adaptive  
cp ./19-11/*.pdf ../pdf
cd ..
cd classic-2
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-4
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-6
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-8
cp ./19-11/*.pdf ../pdf
cd ..  
cd standards    
cd adaptive
cp ./19-11/*.pdf ../../pdf  
cd ..
cd foundation
cp ./19-11/*.pdf ../../pdf
cd ../..
cd standards-3
cd classic
cp ./19-11/*.pdf ../../pdf
cd ..  
cd tests
cp ./1-2/*.pdf ../../pdf
cd ../..
cd classic
cp ./19-11/*.pdf ../pdf
cd ..   
cd classic-3
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-5
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-7
cp ./19-11/*.pdf ../pdf
cd ..  
cd classic-9
cp ./19-11/*.pdf ../pdf
cd ..  
cd standards-2
cd adaptive
cp ./19-11/*.pdf ../../pdf
cd ..  
cd classic
cp ./19-11/*.pdf ../../pdf
cd ../..
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1