post as simple text ..
-
I have a blog and I have lines that I have copy pasted that have ” in them.
For example:
echo “selclass qualifier memory;info;wait;infolog” | cstmWhen I copy paste the line from the blog to a terminal session I get this:
echo ^óselclass qualifier memory;info;wait;infolog^? | cstm
As you see the ” is turned into a ^?
Then if I have
awk ‘{ print length(), $0 | “sort -n” }’This is what it will paste as
awk { print length(), $0 | sort -n^T }^RIs there a way to fix this?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘post as simple text ..’ is closed to new replies.