I have file with hex symbols like below
cat demo
\x22count\x22
\x22count\x22
\x22count\x22
I need conversion like:
echo $(cat demo)
"count" "count" "count"
How to get unicode symbols in pipeline with newline symbol? Something like:
cat demo | ???
"count"
"count"
"count"