发布网友 发布时间:2022-04-23 14:22
共3个回答
热心网友 时间:2023-05-21 15:21
#!/bin/bash
# new 一开始就是个symbolic link,不能是空目录
# 这个脚本在“同文件夹”下执行,可以放在后台执行
# 符号链接名:new
target=new
while true
do
# 每秒钟检查一次
sleep 1
# 如果符号链接不存在,就什么都不做
[ ! -h $target ] && continue
# 找一个最新目录
newdir=$(find . -type d -newer $target | tail -1)
# 如果找到,更新符号链接
[ -d "$newdir" ] && ln -nsf $newdir $target
done
热心网友 时间:2023-05-21 15:22
这个情况得需要使用cron实现,写一个shell脚本把。
热心网友 时间:2023-05-21 15:22
你是要脚本还是什么?
命令ln -s