FILE -ot FILE (conditional operator)
true
if file1
is older than file2
, based on the modification date.
-ot
is not included in POSIX.
Avoid it if you want to stay compatible with POSIX shells.
Links
Examples
- Different ways to test if a file is older than another file:
1 2 3 4
test ~/file1.txt -ot ~/file2.txt && echo "file1 is older" [ ~/file1.txt -ot ~/file2.txt ] && echo "file1 is older" # Bash [[ ~/file1.txt -ot ~/file2.txt ]] && echo "file1 is older"
BashSupport Pro ist eine Bash IDE mit Unterstützung für -ot – probieren Sie es aus!