Sha256: 5f2fbd62818ab7192d9c1a2e948043d6052b4fd699384b4e7b6a79135149ee63
Contents?: true
Size: 1.2 KB
Versions: 9
Compression:
Stored size: 1.2 KB
Contents
```json { "paths" : { "/tmp" : {}, // implicit name+path, just count everything + report "/tmp swapfiles" : { // names must be unique "path" : "/tmp", // explicit path "match" : "^\\..*\.swp$", // regular expression match "atime" : {"min": 1354051358}, // in absolute epoch seconds // also max, (and relative time using -min/-max) // also for: mtime, ctime, size (only absolute min/max) // // uid/gid : [35, 47], or by excluding: ["not", 0, 42] // // mode: "0[67][45]0" // a right-anchored regexp // mode: "& 0111" // octal bitmask }, "/opt" : {"no_list" : true}, // will skip stat() on contents "/bin" : {"no_list" : true, // will only return the count, "mtime" : {"-min" : 600}}, // but stat is needed for the check "/vmlinuz" : { "path" : "/", "only" : ["vmlinuz"], // explicit list / skip readdir() "filter" : ["symlink"], // must be a symlink "mtime" : {"-min" : 3600}, // relative to Time.now }, "/bin symlinks" : {"path" : "/bin/", "filter" : ["symlink"]}, "/usr/bin swapfiles" : {"path" : "/usr/bin/", "glob" : ".*.swp"} } } ```
Version data entries
9 entries across 9 versions & 1 rubygems