@@ -216,14 +216,17 @@ Shortcuts to common file extensions:
216216 fselect path from /home/user where is_archive = true
217217 fselect path, mime from /home/user where is_audio = 1
218218 fselect path, mime from /home/user where is_book != false
219- fselect path from /home/user where is_doc != 1
220- fselect path from /home/user where is_image = false
221- fselect path from /home/user where is_video != true
219+
220+ Even simpler way of using boolean columns:
221+
222+ fselect path from /home/user where is_doc
223+ fselect path from /home/user where is_image
224+ fselect path from /home/user where is_video
222225
223226Find files with dangerous permissions:
224227
225- fselect mode, path from /home/user where other_write = true or other_exec = true
226- fselect mode, path from /home/user where other_all = true
228+ fselect mode, path from /home/user where other_write or other_exec
229+ fselect mode, path from /home/user where other_all
227230
228231Simple glob-like expressions or even regular expressions on file mode are possible:
229232
@@ -240,9 +243,9 @@ Or by owner's or group's name:
240243
241244Find special files:
242245
243- fselect name from /usr/bin where suid = true
244- fselect path from /tmp where is_pipe = true
245- fselect path from /tmp where is_socket = 1
246+ fselect name from /usr/bin where suid
247+ fselect path from /tmp where is_pipe
248+ fselect path from /tmp where is_socket
246249
247250Find files with xattrs, check if particular xattr exists, or get its value:
248251
0 commit comments