|
4/12 |
2007/10/16-17 [Uncategorized] UID:48334 Activity:nil |
10/15 Is there a command line that can convert tabs to spaces properly? \_ cat /tmp/foo | col -x > /tmp/bar \_ cat /tmp/foo | expand -t 8 > /tmp/bar Change 8 to whatever tab characters should display. |