Convert all tabs in a file to spaces, assuming the tab width is 2
$ expand -t 2 <filename> Change the number to change the number of spaces. Leaving it out defaults to 8. Leaving out the filename defaults to stdin. And to do it in reverse, you can use the...
View ArticleExpand tabs
$ function expand-tabs() { expand -t 8 "$1" > "$1.expanded"; mv -f "$1.expanded" "$1"; } I don't like TABs in sources files because in case of mixture of TABs and spaces they looks in different...
View ArticleReplace spaces with tabs & format file source recursively within a directory
$ find . -type f -name \*.php | while IFS="" read i; do expand -t4 "$i" > "$i-"; mv "$i-" "$i"; done Recursively find php files and replace tab characters with spaces. Options: "\*.php" -- replace...
View ArticleDump an aspell dictionary as a word list
$ aspell -d en dump master | aspell -l en expand > words View this command to comment, vote or add to favourites View all commands by urdh Diff your entire server config at ScriptRock.com
View ArticleDump an aspell dictionary as a word list
$ aspell -d en dump master | aspell -l en expand > words View this command to comment, vote or add to favourites View all commands by xocoalt Diff your entire server config at ScriptRock.com
View Article