我想要一个命令(或者可能是 cp 的一个选项)来创建目标目录(如果它不存在)。
例子:
cp -? file /path/to/copy/file/to/is/very/deep/there
mkdir -p "$d" && cp file "$d"
(没有这样的选项cp)。
cp