/ Published in: Bash
Respects tab size setting
Expand |
Embed | Plain Text
#!/bin/bash _TAB_REPLACEMENT_STR=$(jot -b ' ' -s '' $TM_TAB_SIZE) cat $TM_FILEPATH | perl -pe "s/\t/$_TAB_REPLACEMENT_STR/g"
You need to login to post a comment.
Respects tab size setting
#!/bin/bash _TAB_REPLACEMENT_STR=$(jot -b ' ' -s '' $TM_TAB_SIZE) cat $TM_FILEPATH | perl -pe "s/\t/$_TAB_REPLACEMENT_STR/g"
You need to login to post a comment.