标签: linux structure mv
我想将/ etc /中超过90天的所有文件和目录移动到/ old-etc目录,但在源目录中具有相同的结构。
由于
答案 0 :(得分:0)
尝试这样做:
find /etc -mtime +90 -type f -exec bash -c 'install -D "$1" "/old-etc/$1" && rm -f "$1"' -- {} \;