我在写 bash 脚本。在这个脚本中,我希望用户输入一个目录的路径。然后我想在这个字符串的末尾附加一些字符串,并构建一个到某些子目录的路径。 例如,假设用户输入如下字符串:
/home/user1/MyFolder
Now I want to create 2 subdirectories in this directory and copy some files there.
/home/user1/MyFolder/subFold1
/home/user1/MyFolder/subFold2
我怎么能这么做?