From: Masatake YAMATO Date: Tue, 16 Nov 2021 19:58:51 +0000 (+0900) Subject: lsfd.1.adoc: remove redundant parenthesis from the examples X-Git-Tag: v2.38-rc1~144^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=77447ab822aafa5ae242bfc9592b9700a45e1361;p=thirdparty%2Futil-linux.git lsfd.1.adoc: remove redundant parenthesis from the examples Signed-off-by: Masatake YAMATO --- diff --git a/misc-utils/lsfd.1.adoc b/misc-utils/lsfd.1.adoc index 764bc3fcaa..d6fc6bc95c 100644 --- a/misc-utils/lsfd.1.adoc +++ b/misc-utils/lsfd.1.adoc @@ -309,15 +309,15 @@ Do the same in an alternative way:: List all running executables:: - # lsfd -Q '(ASSOC == "exe")' + # lsfd -Q 'ASSOC == "exe"' Do the same in an alternative way:: - # lsfd -Q '(ASSOC eq "exe")' + # lsfd -Q 'ASSOC eq "exe"' Do the same but print only file names:: - # lsfd -o NAME -Q '(ASSOC eq "exe")' | sort -u + # lsfd -o NAME -Q 'ASSOC eq "exe"' | sort -u List deleted files associated to processes:: @@ -325,19 +325,19 @@ List deleted files associated to processes:: List non-regular files:: - # lsfd -Q '(TYPE != "REG")' + # lsfd -Q 'TYPE != "REG"' List block devices:: - # lsfd -Q '(DEVTYPE == "blk")' + # lsfd -Q 'DEVTYPE == "blk"' Do the same with TYPE column:: - # lsfd -Q '(TYPE == "BLK")' + # lsfd -Q 'TYPE == "BLK"' List files including "dconf" directory in their names:: - # lsfd -Q '(NAME =~ ".\*/dconf/.*")' + # lsfd -Q 'NAME =~ ".\*/dconf/.*"' List files opened to QEMU virtual machine::