在我的 ubuntu 20.04 上,当我使用
mkdir -p /home/parent/{child1,child2}
在我的终端中,我得到一个文件夹parent,其中有2个子文件夹child1和child2。
- 父母
- 父母/孩子1
- 父母/孩子2
但是,当我尝试使用 Python 脚本运行它时
bashCommand = "mkdir -p /home/parent/{child1,child2}"
#print(bashCommand)
subprocess.run(bashCommand.split(), capture_output=True)
我最终有一个名为{child1,child2}的父文件夹和一个名为的子文件夹。
- 父母
- 父母/{孩子1,孩子2}
我怎样才能解决这个问题?