{
"name": "stat",
"description": "Display file status",
"options": [
{
"names": [
"-F"
],
"description": "As in ls(1), display a slash ('/') immediately after each pathname that is a directory, an asterisk ('*') after each that is executable, an at sign ('@') after each symbolic link, a percent sign ('%')"
},
{
"names": [
"-L"
],
"description": "Use stat(2) instead of lstat(2). The information reported by stat will refer to the target of file, if file is a symbolic link, and not to file itself. If the link is broken or the target does not ex"
},
{
"names": [
"-f"
],
"description": "Display information using the specified format; similar to printf(3) formats in that they start with %, are then followed by a sequence of formatting characters, and end in a character that selects th",
"takes_arg": true,
"arg": {
"name": "format"
}
},
{
"names": [
"-l"
],
"description": "Display output in 'ls -lT' format"
},
{
"names": [
"-n"
],
"description": "Do not force a newline to appear at the end of each piece of output"
},
{
"names": [
"-q"
],
"description": "Suppress failure messages if calls to stat(2) or lstat(2) fail. When run as 'readlink', error messages are automatically suppressed"
},
{
"names": [
"-r"
],
"description": "Display raw information. That is, for all the fields in the stat structure, display the raw, numerical value (for example, times in seconds since the epoch, etc.)"
},
{
"names": [
"-s"
],
"description": "Display information in 'shell output' format, suitable for initializing variables"
},
{
"names": [
"-t"
],
"description": "Display timestamps using the specified format. This format is passed directly to strftime(3)",
"takes_arg": true,
"arg": {
"name": "timefmt"
}
},
{
"names": [
"-x"
],
"description": "Display information in a more verbose way as known from some Linux distributions"
}
],
"args": [
{
"name": "file",
"description": "File(s) to stat",
"is_variadic": true,
"template": "filepaths"
}
]
}