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:
uutils od:
$ : | ./target/debug/od -tfL
./target/debug/od: unexpected char 'L' in format specification 'fL'
Here's the relevant part of the code:
|
// FormatTypeCategory::Float, 'L' => *byte_size = 16, // TODO support f128 |
The uutils version of
oddoes not support thefLoutput format specifier. It means "format the output as a floating point number, usingsizeof(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.htmlGNU od:
uutils od:
Here's the relevant part of the code:
coreutils/src/uu/od/src/parse_formats.rs
Line 233 in b14e396