mirror of
https://github.com/jarun/nnn.git
synced 2025-03-26 16:22:20 +00:00
Use -x flag with BSD stat
This commit is contained in:
parent
46a5092eee
commit
93db9bb2be
1 changed files with 4 additions and 0 deletions
|
@ -4526,7 +4526,11 @@ static bool show_stats(char *fpath)
|
|||
("file " FILE_MIME_OPTS),
|
||||
#endif
|
||||
"file -b",
|
||||
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
|
||||
"stat -x",
|
||||
#else
|
||||
"stat",
|
||||
#endif
|
||||
};
|
||||
|
||||
size_t r = ELEMENTS(cmds);
|
||||
|
|
Loading…
Add table
Reference in a new issue