ogham / exa

A modern replacement for ‘ls’.
https://the.exa.website/
MIT License
23.63k stars 661 forks source link

[Fr] Octal File Permissions Column Option #1117

Closed andrewcrook closed 2 years ago

andrewcrook commented 2 years ago

it would be useful to have the option to have Octal permissions

equivalent example (gstat = GNU version) >> gstat -c '%A %a %n' ~ drwxr-x--- 750 /Users/andrew

For example this could be implemented as

>> exa --no-permissions -octal 
750 /Users/Andrew
>> exa --permissions -octal 
or exa -octal 
drwxr-x--- 750 /Users/andrew
owlseye commented 2 years ago

--octal-permissions seems to do exactly what you want.

andrewcrook commented 2 years ago

--octal-permissions seems to do exactly what you want.

oh okay, many thanks for that