description property
A description of this command, included in usage.
Implementation
@override
final description = "listing all entities that match a glob \n\n"
"e.g. list CWD, use . or \$PWD (Unix-like) or \$CURDIR (ft define) \n"
" ft list . \n\n"
"e.g. list CWD, all *.md, use variable name. \n"
r" ft list '\$CURDIR' --pattern='$mdfiles' --define='mdfiles=**.md'"
"\n\n"
"e.g. list CWD, excluding hiddens, verbose, pretty output. \n"
" ft list . --excludes='/**/.**' --fields=ok,action,type,perm,time,size -v \n\n"
"e.g. list CWD, only hiddens, verbose output, show extra. \n"
" ft list . --excludes='/**/.**' --no-matched --fileds=extra -v \n\n"
"e.g. list ~/Downloads, file size >= 100M, show size. \n"
" ft list ~/Downloads --size_ge=100m --fields=size \n\n"
"e.g. list ~/Downloads, file time <= 20240101, show time. \n"
" ft list ~/Downloads --time_le=20240101 --fields=time\n\n"
"e.g. list ~/Downloads, use relative time (quantity unit ago). \n"
" ft list ~/Downloads --size_ge=100m --time_le='1 month ago' --fields=size,time";