script to remove color coding information from an asterisk screen log

git-svn-id: svn://192.168.202.10@1143 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mikec
2009-06-04 16:36:51 +00:00
parent a9573576ce
commit 6f2676c0d6
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
FILE=$1
cat $FILE | sed "s/\[.;..;..m//g" | tr -d "\033" > $FILE.nocolor