logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Stat - Display File Information | Online Free DevTools by Hexmos

Display file information with Stat command. Inspect file size, permissions, and access dates with this powerful utility. Free online tool, no registration required.

stat

Display file and filesystem information. More information: https://www.gnu.org/software/coreutils/manual/html_node/stat-invocation.html.

  • Display properties about a specific file such as size, permissions, creation and access dates among others:

stat {{path/to/file}}

  • Display properties about a specific file such as size, permissions, creation and access dates among others without labels:

stat {{[-t|--terse]}} {{path/to/file}}

  • Display information about the filesystem where a specific file is located:

stat {{[-f|--file-system]}} {{path/to/file}}

  • Show only octal file permissions:

stat {{[-c|--format]}} "%a %n" {{path/to/file}}

  • Show the owner and group of a specific file:

stat {{[-c|--format]}} "%U %G" {{path/to/file}}

  • Show the size of a specific file in bytes:

stat {{[-c|--format]}} "%s %n" {{path/to/file}}

See Also