equal
deleted
inserted
replaced
|
1 # Filesystem related parameters |
|
2 |
|
3 # Returns age of last modification time of file $1 |
|
4 UserParameter=file.age[*],expr `date +%s` - `stat -f %m $1` |
|
5 |
|
6 # Returns count of files in directory $1 |
|
7 UserParameter=dir.files[*],ls $1|wc -l |
|
8 |