Sponsored Content
Top Forums Shell Programming and Scripting How to prevent the pattern "^[[0m" from being written to a file ???? Post 302244374 by frozensmilz on Tuesday 7th of October 2008 10:31:24 PM
Old 10-07-2008
od -c is not detecting "^[" pattern........

Hi,

Thnks for the reply.
I have used the following command as you told...
grblib VerCsm.cpp | od -c

the output is

0000000 s t r i n g . h \n M i s c . h \n
0000020 D r i P r m . h \n D r i D e f .
0000040 h \n G b l D e f . h \n E r r M s
0000060 g . h 033 [ 0 m \n C h i p I m g .
0000100 h \n M t q H d r . h \n M t q C s
0000120 m . h 033 [ 0 m \n V e r D e f . h
0000140 \n
0000141
-------------------------------------------------------------------------
Then i have added some sed and tr command to filter the junk out
grblib VerCsm.cpp | od -c |sed 's/033//g;s/\[//g;s/m//g;s/0//g' | tr -d "123456"

s t r i n g . h \n M i s c . h \n
D r i P r . h \n D r i D e f .
h \n G b l D e f . h \n E r r M s
g . h \n C h i p I g .
h \n M t q H d r . h \n M t q C s
. h \n V e r D e f . h
\n
-------------------------------------------------------------------------
Which is (without od)
grblib VerCsm.cpp | sed 's/033//g;s/\[//g;s/m//g;s/0//g' | tr -d "123456"

string.h
Misc.h
DriPr.h
DriDef.h
GblDef.h
ErrMsg.h
ChipIg.h
MtqHdr.h
MtqCs.h
-------------------------------------------------------------------------
when redirected to a file say tmp i saw...
string.h
Misc.h
DriPr.h
DriDef.h
GblDef.h
ErrMsg.h^[
ChipIg.h
MtqHdr.h
MtqCs.h^[
VerDef.h

-------------------------------------------------------------------------
Due to sed the 'm's are gone from ChipImg.h.etc..which was unexpected...and the redirected output tmp still showed "^[" character, which is not displayed in od output.

My terminal prompt value PS1 is

export PS1="\[\e[1;31m\][\[\e[36;1m\]\u\[\e[31;1m\]@\[\e[32;1m\]\H\[\e[1;36m\]{tty:\l}\[\e[31;1m\]]\[\e[1;37m\]\W\[\e[1;31m\]$ \[\e[1;37m\]"

which will display like this
[bas@casinox{tty:18}]bin$
-------------------------------------------------------------------------

The actual culprit was strMatch script which was displaying the output in yellow color...the script works fine when the color is removed....i use the following script to add color while echoing

#scriptfile cecho

open_escape="^[[0m"
close_escape="^[[0m"

case $1 in
red) open_escape="^[[1;31m"
shift ;;
green) open_escape="^[[1;32m"
shift ;;
blue) open_escape="^[[0;34m"
shift ;;
purple) open_escape="^[[1;35m"
shift ;;
cyan) open_escape="^[[0:36m"
shift ;;
grey) open_escape="^[[0;37m"
shift ;;
white) open_escape="^[[1;37m"
shift ;;
yellow) open_escape="^[[1;33m"
shift ;;
bold) open_escape="^[[1m"
shift ;;
*) shift ;;
esac

echo "${open_escape}$*${close_escape}"

exit 0
-------------------------------------------------------------------------
Eventhough the issue was solved by removing the color......i would like to know how to remove those junk characters..........since the solution was just an escape method but not an actual dealing with the situation.....Smilie.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Error : "No data written to object that was write locked"

Hi All, I was able to solve my previous problem (link directory)... but now i have this following problem. I have mounted a disk from other machine using "mount -F nfs" command. When i run a batch which generates some files in that drive.... after a certain number of files i get... (1 Reply)
Discussion started by: nileshkarania
1 Replies

2. HP-UX

Apache w/ "Coverity Prevent" cannot start... please hellp!

Hi, I am trying to start the apache server on 11i for Coverity Prevent using following command: # cov-start-gui --datadir /qa_home/coverity/data_dir-4.3.0 cov-internal-httpd not running. For further information, see '/qa_home/coverity/data_dir-4.3.0/logs/error_log' # the error_log... (0 Replies)
Discussion started by: prits31
0 Replies

3. Shell Programming and Scripting

how to prevent "ctrl-C" input

Hi I have a script and its execution takes 40 - 60 minutes. The script is run on the console window of the machine. Script execution should not be broken by running ctrl-C under any circumstances. Is there a way to lock the window from any user input (ctrl-C in fact) till the end of the script... (3 Replies)
Discussion started by: aoussenko
3 Replies

4. AIX

AIX - "prevent script from running twice" issue

I know about standard "ps ..|grep .. | grep -v grep" solution, but... this is different issue I have encountered in several companies I worked for. And I see this only for AIX - not HP, not Solaris, not Linux. Korn shell script is scheduled in the background (via cron /via Tivoli Scheduler or... (6 Replies)
Discussion started by: ooops
6 Replies

5. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

6. UNIX for Dummies Questions & Answers

look for file size greater than "0" of specific pattern and move those to another directory

Hi , i have some files of specific pattern ...i need to look for files which are having size greater than zero and move those files to another directory.. Ex... abc_0702, abc_0709, abc_782 abc_1234 ...etc need to find out which is having the size >0 and move those to target directory..... (7 Replies)
Discussion started by: dssyadav
7 Replies

7. Shell Programming and Scripting

awk script does not work when written as "one-liner"

In my quest to solve a bigger problem (See my previous post called "Create SQL DML insert statements from file using AWK or similar" - sorry, not allowed to post urls until I have > 5 posts) I'm trying to get my head round awk, but have some problem figuring out why the following script does work... (2 Replies)
Discussion started by: Yagi Uda
2 Replies

8. UNIX for Dummies Questions & Answers

Egrep confusion with "I" and "-I" pattern

I am executing following command egrep -w I filename.txt the filename.txt has following data .... -I 07-18 08:31:19.924 9880 6 SessionManager ConnectConfig: ConfigurationWebService LoginResults=SuccessfulLogin I am so hungry that I need to eat I expect egrep to print only the second... (1 Reply)
Discussion started by: VBG
1 Replies

9. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

10. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies
All times are GMT -4. The time now is 04:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy