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.
我正在编写一个简单的 shell 脚本(我的第一个),并且似乎无法弄清楚为什么在运行./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"