We are migrating our UniVerse application from AIX to Linux. After moving, all is good except print files that contain escape characters (char(27)) are losing the escape character and printing flat text of the control string. We have confirmed that the print file is constructed properly. It only does this when streaming the print file to the printers.
Linux dropping escape characters
460 Views Asked by JTeter At
2
There are 2 best solutions below
0
rbl
On
We just migrated from HP to linux and have the same problem on CentOS 5.9 (but not on RHEL 6.4!). For us, the solution was to use the '-o raw' option on the lpr command that is used in the driver file we have being reference by the sp.config. The other half of the solution is that we had to change the printer settings to automatically do a CR when a LF is done without its own CR, otherwise print lines 'stair-step' across the page. YMMV
Related Questions in LINUX
- How do I recursively find and replace only in files named index.php on Linux webserver?
- passing text with \n as one argument in shell
- kernel module does not print packet info
- How to send ESC/POS commands to thermal printer in Linux
- (x64 Nasm) Writeline function on Linux
- How do I set the Hive user to something different than the Spark user from within a Spark program?
- Default priority of thread with SCHED_FIFO
- Calling a python function with options from shell script
- How to split a directory into parts without compressing or archiving?
- Cross compile simple standard C program on Linux for Mac
- How to offload NAPI poll function to workqueue
- python netifaces - How to get currently used network interface
- Unexpected output from function
- mingw-64 conflicting declarations when cross-compiling
- Different behavior of async with Visual Studio 2013(Windows8.1) and GCC 4.9(Ubuntu14.10)
Related Questions in ESCAPING
- Escape dot in jquery validate plugin
- Java character escaping
- MySQLI- Allow the Forward Slash to be Used With Insert Statement
- "stringByAddingPercentEncodingWithAllowedCharacters" replaces more characters than it should
- JSON (schema) validation with escaped characters in patterns fails
- Converting control characters to escape sequences in C#
- How to enter an escape sequence when using ProcessBuilder to open Windows file explorer and highlight the file?
- Python-like Byte Array String representation in C#
- Bash quotes disable escaping
- how to replace a part of string when it contains a metacharacter in perl
- Using a BackSlash in Java
- Escape character for Location of char in a string: R lang
- Executing Python Script from C++ program in Windows XP
- Setting ng-model to a string containing </script> clogs angular?
- Substitution of variable into link with many interior quotes - how to escape correctly
Related Questions in U2
- Is there a native way to convert to UTC time in UniVerse 11.2.4+?
- What is the most efficient way to copy UniDataSet to SQL Server?
- How can I handle JSON strings in UniData?
- U2 Toolkit Insert function creating blank multi-values
- Linux dropping escape characters
- U2 Visual Studio 2013 Add-in
- Connect to PickBasic from Java
- run SQL script using Rocket Universe from AIX command line (uvsh)
- Rocket Universe Data load
- Writing to UniVerse Linked Server from SQL Server via ODBC
- How do I access MultiValue data from U2 Toolkit for .NET?
- U2 Toolkit for .NET - Entity Framework Sample "EntityFramework_CodeFirst" not working
- U2 Toolkit for .NET - Entity Framework Sample "EntityFramework_CodeFirst2" not connecting
- UniData UniQuery - two WITH
- Is there an R package for connecting to U2 / Universe / PICK?
Related Questions in UNIVERSE
- Is there a native way to convert to UTC time in UniVerse 11.2.4+?
- UniVerse SQL List all Fields within a Table
- UniVerse SQL View All Tablenames
- Using fields from different universes in Business objects
- UniVerse - SQL LIST: View List of All Database Tables
- Is it possible to display included source code
- Case Else Statement from different tables
- Constants in pick/UniVerse database
- UniObjects for Java read object code file
- Business Objects Universes - joins to restrict data
- Linux dropping escape characters
- How to get list of account that are changed in given time frame
- Two queries related in UniObjects for .NET
- run SQL script using Rocket Universe from AIX command line (uvsh)
- Rocket Universe Data load
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If I understand you correctly, the characters in the file are now
^and[instead of the^[literal escape, and you want the literal escape. If that's the case, you can use:where
^[in the replacement is a literal escape, typed with Ctrl+V Esc.If that's not what they're printing, please post an example of what it is and what it should be.