I have been trying to decipher something for a while now, and it eludes me...maybe you can help?
Here is the line of code:
Code:
`printf "%-24s" "${1}" | od -w99 -A n -tx1`
It is really just the "od" part, and the "-w99" that I cannot get. I believe it is formatting the ASCII string (that is what $1 contains) to an appropriate hex string, but I cannot verify.
The other question I have about this code is the "|" character...is this really doing a bitwise OR on the string, or is it a separator?
Any help would be appreciated!
JR