Sponsored Content
Full Discussion: Why does my test fail ??
Top Forums Shell Programming and Scripting Why does my test fail ?? Post 302593659 by Corona688 on Friday 27th of January 2012 04:37:30 PM
Old 01-27-2012
When I open the original file in a UNIX text editor I see:

Code:
Distributeur
Alliance Vivafilm
Origine
...

Don't edit text files for UNIX in notepad. If you'd been editing them in UNIX you'd have seen those characters; they're what Notepad inserts at the beginning of Unicode text files to warn itself that they're unicode(UTF8 in this case), and that's what's messing up your comparison.

Here's an improvement on dos2unix for that, stripping out those faulty characters and windows' carriage returns at the same time:

Code:
tr -d '[\r\357\273\277]' < wingarbage.txt > actualtext.txt


Last edited by Corona688; 01-27-2012 at 05:45 PM..
This User Gave Thanks to Corona688 For This Post:
 

6 More Discussions You Might Find Interesting

1. Solaris

cdrom test fail

Hi I have a problem in installing solaris 9 in a ULTRA Enterprise 2 machine. The cdrom does not keep the cd in. When I put the installtion cd 1 and close the tray, I can see the led blinks three times and then the tray comes out. I borrowed a set of installtion cd s from one of my friends (they... (3 Replies)
Discussion started by: enke1234
3 Replies

2. Shell Programming and Scripting

Test on string containing spacewhile test 1 -eq 1 do read a $a if test $a = quitC then break fi d

This is the code: while test 1 -eq 1 do read a $a if test $a = stop then break fi done I read a command on every loop an execute it. I check if the string equals the word stop to end the loop,but it say that I gave too many arguments to test. For example echo hello. Now the... (1 Reply)
Discussion started by: Max89
1 Replies

3. Shell Programming and Scripting

How to check weather a string is like test* or test* ot *test* in if condition

How to check weather a string is like test* or test* ot *test* in if condition (5 Replies)
Discussion started by: johnjerome
5 Replies

4. Shell Programming and Scripting

Prefixing test case methods with letter 'test'

Hi, I have a Python unit test cases source code file which contains more than a hundred test case methods. In that, some of the test case methods already have prefix 'test' where as some of them do not have. Now, I need to add the string 'test' (case-sensitive) as a prefix to those of the... (5 Replies)
Discussion started by: royalibrahim
5 Replies

5. Shell Programming and Scripting

Untar fail

Hi Team, I have a file named as follows: aaa.tar.gz Now I need to verify if the untar fails, then the script has to send a mail. In order to check this condition, I need a tar.gz file which is unable to untar it. Can anyone help me to create a file which I will be able to unzip successfully... (2 Replies)
Discussion started by: kmanivan82
2 Replies

6. Forum Support Area for Unregistered Users & Account Problems

Fail to register

After inputted all required fields in registration page, the below message is shown and cannot go on. A required field called Custom Date & Time Formats is missing or has an invalid value. (2 Replies)
Discussion started by: Unregistered
2 Replies
PX_SET_INPUTENCODING(3) 				     Library Functions Manual					   PX_SET_INPUTENCODING(3)

NAME
PX_set_inputencoding -- Set encoding for output SYNOPSIS
#include <paradox.h> int PX_set_inputencoding(pxdoc_t *pxdoc, const char *encoding) DESCRIPTION
Sets the input encoding for all alpha fields. It is used when data is stored into a record. The encoding must be a name as it is described by the man and info pages of recode or iconv whatever is used. A common value is `latin1' on Unix systems. If you do not set the encoding the function PX_get_data_alpha(3) will return field data in the original encoding otherwise it will recode the field data. This function is a short cut form PX_set_parameter(pxdoc, "inputencoding", encoding) and is deprecated. RETURN VALUE
Returns -2 if recoding is not supported and a value < 0 in case of an error, otherwise 0. SEE ALSO
PX_set_data_alpha(3), PX_set_targetencoding(3), PX_set_parameter(3), iconv(1), recode(1) AUTHOR
This manual page was written by Uwe Steinmann uwe@steinmann.cx. PX_SET_INPUTENCODING(3)
All times are GMT -4. The time now is 05:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy