Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は単純なシェル スクリプト (私の最初のスクリプト) に取り組んでいますが、実行時にこれが失敗する理由を理解できないようです./auto.sh baz。完全な宛先パスでハードコーディングしたときは最初は機能していましたが、引数を使用したいので壊れます。どんな助けでも素晴らしいでしょう。ありがとう!
./auto.sh baz
#!/bin/sh cp -ivr ./foo/bar.xcodeproj ./iOS/$1.xcodeproj
以下を試してください
#!/bin/sh cp -ivr "./foo/bar.xcodeproj" "./iOS/${1}.xcodeproj"