.hq files on UNIX

Hi,

I see files with .hq extensition on my system, these are updating runtime in my project, however i am unaware what complete information it has, Is there a way I can convert these files to readable format. Some words are visible in file and makes sense too, It seems its the information on live data.

Please help.

HornetQ files and they are binary.

On a binary you can try to extract text with the strings command.

Thanks for the reply, can you explain with example? Lets say i have a file with name xxxxx.hq. how can i use strings command on this file?

man strings for the synopsis...

strings -n 1 XXXXX.hq in its absolute basic form...

1 Like

long sought this information, thank you guys for the post!