我正在尝试在Docker容器中修补目录,但是一个奇怪的问题困扰着我。
我跑步
docker exec -w /opt/explorer 976944b28416 patch -R -p0 < translation.patch
出现错误
bash: translation.patch: No such file or directory
但是我确定文件translatioin.patch在那里。
这是docker容器中的目录结构:
docker exec -w /opt/explorer 976944b28416 ls
...
client
...
translation.patch
...
我怀疑命令中的<
符号引起了问题,但我不知道具体情况是什么。