-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Labels
Description
The uutils version of od
does not support the fL
output format specifier. It means "format the output as a floating point number, using sizeof(long double)
bytes to interpret each number in the input". For more information, see: https://www.gnu.org/software/coreutils/manual/html_node/od-invocation.html
GNU od:
$ : | od -tfL
0000000
uutils od:
$ : | ./target/debug/od -tfL
./target/debug/od: unexpected char 'L' in format specification 'fL'
Here's the relevant part of the code:
coreutils/src/uu/od/src/parse_formats.rs
Line 233 in b14e396
// FormatTypeCategory::Float, 'L' => *byte_size = 16, // TODO support f128 |