Jan 162010
How to convert spaces into tabs?
Answer:
You can use the unexpand command
# unexpand test.txt
Another example:# echo -e " A" | unexpand | sed 's/\t/F/g' FA
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
How to convert spaces into tabs?
Answer:
You can use the unexpand command
# unexpand test.txt
Another example:# echo -e " A" | unexpand | sed 's/\t/F/g' FA