Kya*_*ing 3 linux shell command
我有以下linux命令。
find ${MOUNT_POINT} -type f -name "VM*" -newer $SENTFILE -print0 | xargs -0 -i cp {} ${TMP_DIR}
Run Code Online (Sandbox Code Playgroud)
我很难理解这个选项-newer $SENTFILE。有人能解释一下这个选项吗?
从man find:
-newer file\n File was modified more recently than file. If file is a sym\xe2\x80\x90\n bolic link and the -H option or the -L option is in effect, the\n modification time of the file it points to is always used.\nRun Code Online (Sandbox Code Playgroud)\n