我正在尝试查找早于几天的文件,我想要将这些文件复制到特定的文件夹中,并通过一个命令从源目录中删除这些文件。
find . -type d -mtime +600 -exec cp -rf '{}' destination folder \; -exec rm -rf '{}' \;
错误:
find: ./one: No such file or directory
find: ./two: No such file or directory
find: ./three: No such file or directory
我如何解决这个错误?
例如,我希望将c复制到ab/而不是用c将a/b转换为文件夹:
$ mkdir /a /b /ab /b/b
$ ln -s /ab /a/b
$ touch /b/b/c
$ ls -Rl
.:
total 12
drwxrwxr-x 2 a
drwxrwxr-x 2 ab
drwxrwxr-x 3 b
./a:
total 0
lrwxrwxrwx 1 b -> ab
./ab:
total 0
./b:
total 4
drwxrwxr-x 2 b
./b/b:
total 0
-rw-rw-r-- 1 c
我试过:
cp -rf /b/* /a/
cp: can
我是linux新手。最近,我安装了barry桌面,这是黑莓sync.And的客户端,重启后,我在桌面面板上发现了一个错误通知,上面有一条错误信息,上面写着:
ERROR: BROKEN COUNT>0"[the error notification I get on my desktop][1]
当我使用更新程序更新时,我会得到以下错误消息:
[updater error message][2]
"The package system is broken:
Check if you are using third party repositories. If so di
编辑:找到一个重复的解决方案: rsync -a --删除https://stackoverflow.com/questions/23698183/how-to-force-cp-to-overwrite-directory-instead-of-creating-another-one-inside
工作的新脚本:
#!/bin/bash
numCopy=$1
shift
cmdline="${@}"
echo "prepare folders"
for ((i=1;i<=$numCopy;i++));
do
(rsync -a --delete
我无法在Amazon Linux AMI 2012.03版上安装pdftk。pdftk需要gcj2.14,amazon ami提供gcj2.12包。如果我尝试安装gcj2.14,则会与现有的gcj包发生冲突。请建议一种安装pdftk的方法,而不需要升级amazon ami linux,因为我的应用程序已经在那里安装和运行。
您的帮助将不胜感激