@@ -129,29 +129,29 @@ Print the users that are online.
129
129
This will print out online users with pid and loop the information every 1 second.
130
130
glutil -w -print "username: {user} | pid: {pid}" --loop 1 --loopexec "clear" --preexec "clear" --silent
131
131
132
- This will print out all movies with comedy genre of scores greater than 6.
133
- glutil -a iregexi genres, "comedy" and ilom "score > 6.0" --batch | cut -f 3,6
134
-
132
+ This will print out all movies with comedy genre of scores greater than 6, sorted ascending by score .
133
+ glutil -a -l: genres -regexi "comedy" - and -lom "score > 6.0" -print " {(?P:(score)#%-4s)} | {title#%-40s} ({year}) | {country} | {language} {:n}------|-- {(?P:plot#%.120s)} " --sort score
134
+
135
135
This will print out the tvrage info stored in the tv.log, case insensative.
136
- glutil -h --iregexi name, "Hell On Wheels"
136
+ glutil -h -l: name -regexi "Hell On Wheels"
137
137
138
138
Remove from the dirlog what is in the regex. In this case it would remove any entries with repeating
139
139
back-slashes in path
140
- glutil -e dirlog -vvv - -regex "[\/]{2,}"
140
+ glutil -e dirlog -vvv ! -regex "[\/]{2,}"
141
141
142
142
Output all the entries in the nukelog that are under 7 days of age.
143
- glutil -n -- lom "time < $(expr $(date +%s) - 604800)"
143
+ glutil -n -lom "time < (curtime- 604800)"
144
144
145
145
Finds dupes in dirlog - all match params apply. If no explicit match is given, it dupefinds for all records (can take
146
146
a long time)
147
- glutil -p imatch basedir, "Some.Dir.LA-LA"
147
+ glutil -p -l: ?b:dir -match "Some.Dir.LA-LA"
148
148
149
149
Do a recursive search for files or symlinks in /glftpd/site, that contain the
150
- word 'linux ' in path (case-insensitive) and are not older than 7 days
150
+ word 'share ' in path (case-insensitive) and are not older than 7 days
151
151
(604800 secs). Stays on the current filesystem. Prints to stdout.
152
152
Type glutil --info -vv to see the list of modes that can be matched against.
153
153
154
- glutil -x /glftpd/site -recursive -xdev ilom "ctime > curtime-604800 && mode== 10 || mode== 8" and iregexi basepath,"linux " --batch
154
+ glutil -x / -R -xdev -lom "ctime > ( curtime-604800) && mode == 10 || mode == 8" - and -l: ?b:path -regexi "share " -print "Mode: {(?P:(mode#%-5d))} {(?P:(?tl:mtime)#%-25s)} {path}"
155
155
156
156
157
157
glutil is supposed to be able to show me game ratings, how is that done?
0 commit comments