-
% uname -o
GNU/Linux
% fd -V
fd 10.1.0 I'm currently using output="/path/to/filename.ext"
% find "$output" -mmin +60
/path/to/filename.ext
output="/path/to/filename.ext"
% fd --changed-within=60min "$output"
% echo $?
0 This works: % fd --changed-within=60min filename.ext /path/
/path/to/filename.ext but I'd like to keep using Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
tmccombs
Oct 2, 2024
Replies: 1 comment 6 replies
-
The first argument to You either need to do something like:
or
|
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ah, yeah.
This isn't really what fd was designed for.
But you could do it with something like: