我只是想通过以下方法将一堆文件(不是符号链接)从/ etc / apache / sites-enabled文件夹移到/ etc / apache / sites-available文件夹中:
/etc/apache2/sites-enabled$ find . -maxdepth 1 -type f | xargs mv {} ../sites-available/
但我是ubuntu n00b,遇到此错误:
mv: target `./real-file' is not a directory
其中“真实文件”是我在开发环境中设置的测试文件。我正在尝试整理生产服务器上其他人的混乱状况;-)