Yes, you can specify exact byte counts using the -c option in the head command. You simply provide the exact number of bytes you want to display.
For example, to display the first 50 bytes of a file, you would use:
head -c 50 /path/to/file.txt
This command will output exactly the first 50 bytes from file.txt. You can replace 50 with any other integer to display that specific number of bytes.
If you have any further questions or need additional examples, feel free to ask!
