Sponsored Content
Full Discussion: Bash encoding, how to change
Top Forums UNIX for Dummies Questions & Answers Bash encoding, how to change Post 302356623 by varontron on Saturday 26th of September 2009 12:38:31 PM
Old 09-26-2009
there is likely a terminal application setting for changing the encoding of the display. you likely don't need to change the encoding of the unix env.

what's your os/platform/terminal app?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how to change shell from BASH to C

hi all, how can i change my shell from BASH to C shell? i am using cygwin. (3 Replies)
Discussion started by: npatwardhan
3 Replies

2. Shell Programming and Scripting

change the font size in bash

Hi, I would like to change the font size in bash. I know how do it in ksh: F_VDOBLE="\033#6" print "${F_VDOBLE}Esto es..." But in bash I don't know Could you help me please? Many thanks! (5 Replies)
Discussion started by: mierdatuti
5 Replies

3. Shell Programming and Scripting

How can i change my bash prompt ?

It looks like, user@hostname:/auto/home3/user$ Desired, user@hostname$ I added following line in .bashrc, but still its same. export PS1=" $ " Please help me :confused: (13 Replies)
Discussion started by: admax
13 Replies

4. Shell Programming and Scripting

How to find the file encoding and updating the file encoding?

Hi, I am beginner to Unix. My requirement is to validate the encoding used in the incoming file(csv,txt).If it is encoded with UTF-8 format,then the file should remain as such otherwise i need to chnage the encoding to UTF-8. Please advice me how to proceed on this. (7 Replies)
Discussion started by: cnraja
7 Replies

5. Shell Programming and Scripting

change precision of bash variable

I have a variable in a bash script, DISTANCE=`awk 'BEGIN {FS="\t"} {if (NR==2) print $3;}' $OUTFILE` this is a real number taken from a file. The value are like, 0.334561754018 I am using this value in a file name, '$NAME'_'$DISTANCE'.txt I would like to shorten the number some to... (4 Replies)
Discussion started by: LMHmedchem
4 Replies

6. Shell Programming and Scripting

using awk or bash to change the format

tenxun-glibc_code-x86-64-linux-20120713190049.root.tar.bz2 To tenxun-glibc_code-x86-64-linux.root.tar.bz2 (3 Replies)
Discussion started by: yanglei_fage
3 Replies

7. Shell Programming and Scripting

bash commands to change processor

Say you got a for loop where each execution has 0 dependence on the other. Thus ideally you'd like to executed them all concurrently rather than iteratively (if you had enough CPUs). We don't quite have that many CPUs but I would like to instead partition the iterations between them. Or maybe... (10 Replies)
Discussion started by: stevensw
10 Replies

8. Shell Programming and Scripting

Bash code change

I have the below bash which runs great. Before I make a change I wanted to check with experts (as I am not one). After the perl code completes, I am going to display "annotation complete" then go into the remove function . annovar() { # combine id and position files cd... (2 Replies)
Discussion started by: cmccabe
2 Replies

9. Solaris

View file encoding then change encoding.

Hi all!! I´m using command file -i myfile.xml to validate XML file encoding, but it is just saying regular file . I´m expecting / looking an output as UTF8 or ANSI / ASCII Is there command to display the files encoding? Thank you! (2 Replies)
Discussion started by: mrreds
2 Replies

10. UNIX for Beginners Questions & Answers

Change encoding, no removing special chars. inconv

Hi all, I'm using iconv command to change files encoding to UTF-8 If my input file has chars as those are removed creating the file without those special chars. I tried using iconv -c, but there is still the removal. Is there a way to keep those special chars changing just the... (6 Replies)
Discussion started by: mrreds
6 Replies
YYT(1)							      Yi Yan Tang User Manual							    YYT(1)

NAME
yyt - A psuedo tty program which automatically converts among Chinese encodings. SYNOPSIS
yyt [-h|--help] yyt [-V|--version] yyt [-f encoding|--from=encoding] [-t encoding|--to=encoding] [command...] Where [command...] is the command you want to run using yyt. If not given, the default is set to the environment variable SHELL. If SHELL is not set, /bin/sh will be used. DESCRIPTION
yyt is a psuedo tty program that will translate Chinese encodings automatically on a console. Supported encodings are BIG5/GB2312/HZ/UTF-7/UTF-8/UCS. yyt is similar to hztty(1) except that yyt will make things automatic all the way. Yi Yan Tang use Saka's libhz to detect and convert Chinese encodings. libhz is include in autoconvert and can be found at http://www.debian.org/~ygh/. OPTIONS
yyt supports following Chinese encodings for both input and output: GB2312, BIG5, HZ, UTF-7, UTF-8, UCS yyt supports following command line options: -f encoding or --from=encoding This option sets the encoding of the incoming text. The valid values of encoding are specified above. -t encoding or --to=encoding This option sets the encoding of the local terminal. The valid values of encoding are specified above. -h or --help This option prints out the usage of yyt. -V or --version Gives the current version of ytt. NOTE: If the --from encoding is not set, yyt will guess the encoding of the incoming text. You can safely type the command: % yyt to start the program. Then you can use the command-mode described below to control how yyt acts. USAGE
There are some on the fly commands which can be used to control the behavior of yyt once it is started. User can use these commands to switch encoding, disable auto-encoding-detection or turn off encoding conversion all together. To active the yyt command mode, press the combination key ctrl-y (for switch-on-YYT-command-mode). Then follow a single key command. Once the command is entered, the command mode is switched off. The possible commands in the command mode are: g For switch incoming encoding to GB2312 encoding. b For switch incoming encoding to BIG5 encoding. h For switch incoming encoding to HZ encoding. u For switch incoming encoding to UCS encoding. 7 For switch incoming encoding to UTF-7 encoding. 8 For switch incoming encoding to UTF-8 encoding. r For reset encoding state to the initial mode. d For turn off all the encoding conversions. a For set the incoming encoding to auto-detect mode. y For input a ctrl-y keycode to the terminal so that ctrl-y can still be typed in. Note: If the incoming encoding is explicitly set either through command line options or on line command, the user input is also converted from the terminal encoding to the incoming encoding. ENVIRONMENT
LC_CTYPE If set, the incoming encoding will be set to the encoding of LC_CTYPE. LC_CTYPE will be Overriden by the --to command line option. SHELL If set and there are no command line option given for [command...], the SHELL will be executed on the start of the program. DIAGNOSTICS
Please see BUGS section. BUGS
yyt tries to segment a stream of text into Hanzi parts and English parts. That way, we can have a better guessing on the Chinese encodings for every small part of Chinese. However, Hanzi segmentation does not always work correctly, especially when using curses/slang based pro- grams. Redraw screen (normally ctrl-l) sometime correct it. This problem is expected. Suggestions on better segmentation algrithm are always welcomed. Turn off auto-detection by specify a fromcode by (ctr-y key ) will give better conversion result. AUTHOR
hashao <hashao@chinese.com> SEE ALSO
libhz(3), pyhz(7), hztty(1) yiyantang homepage at http://yiyantang.on.openave.net/ autoconvert homepage at http://www.debian.org/~ygh/ YiYanTang June 2001 YYT(1)
All times are GMT -4. The time now is 05:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy