发布网友 发布时间:2022-05-01 19:55
共2个回答
热心网友 时间:2023-10-24 16:16
find . -name '*.deb' | xargs mv -t .追问
百度坑,字数*,只能图了
find 的作用应该不用多说吧,xargs 配合管道 (|) 的作用就是把前一条命令(find)的输出作为命令行参数来执行命令(mv -t .),整个管道命令大致相当于:
mv -t . `find . -name '*.deb'但是不用 xargs 时,如果 find 的结果太多,可能导致 too many arguments 的错误,有 xargs 后,xargs 会自动处理这种情况,当 find 输出太长时,xargs 自动分割成多条命令。
的作用是把 files 移到当前( . )下的
你的脚本有什么错误?
热心网友 时间:2023-10-24 16:17
mv `find . -name "*.deb"` 目录热心网友 时间:2023-10-24 16:16
find . -name '*.deb' | xargs mv -t .追问
百度坑,字数*,只能图了
find 的作用应该不用多说吧,xargs 配合管道 (|) 的作用就是把前一条命令(find)的输出作为命令行参数来执行命令(mv -t .),整个管道命令大致相当于:
mv -t . `find . -name '*.deb'但是不用 xargs 时,如果 find 的结果太多,可能导致 too many arguments 的错误,有 xargs 后,xargs 会自动处理这种情况,当 find 输出太长时,xargs 自动分割成多条命令。
的作用是把 files 移到当前( . )下的
你的脚本有什么错误?
热心网友 时间:2023-10-24 16:17
mv `find . -name "*.deb"` 目录热心网友 时间:2023-10-24 16:16
find . -name '*.deb' | xargs mv -t .追问
百度坑,字数*,只能图了
find 的作用应该不用多说吧,xargs 配合管道 (|) 的作用就是把前一条命令(find)的输出作为命令行参数来执行命令(mv -t .),整个管道命令大致相当于:
mv -t . `find . -name '*.deb'但是不用 xargs 时,如果 find 的结果太多,可能导致 too many arguments 的错误,有 xargs 后,xargs 会自动处理这种情况,当 find 输出太长时,xargs 自动分割成多条命令。
的作用是把 files 移到当前( . )下的
你的脚本有什么错误?
热心网友 时间:2023-10-24 16:17
mv `find . -name "*.deb"` 目录