Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tr(1) [minix man page]

TR(1)							      General Commands Manual							     TR(1)

NAME
tr - translate character codes SYNOPSIS
tr [-cds] [string1] [string2] OPTIONS
-c Complement the set of characters in string1 -d Delete all characters specified in string1 -s Squeeze all runs of characters in string1 to one character EXAMPLES
tr '[A-Z]' '[a-z]' <x >y # Convert upper case to lower case tr -d '0123456789' <f1 >f2 # Delete all digits from f1 DESCRIPTION
Tr performs simple character translation. When no flag is specified, each character in string1 is mapped onto the corresponding character in string2 . TR(1)

Check Out this Related Man Page

TR(1)							      General Commands Manual							     TR(1)

NAME
tr - translate characters SYNOPSIS
tr [ -cds ] [ string1 [ string2 ] ] DESCRIPTION
Tr copies the standard input to the standard output with substitution or deletion of selected characters. Input characters found in string1 are mapped into the corresponding characters of string2. When string2 is short it is padded to the length of string1 by duplicat- ing its last character. Any combination of the options -cds may be used: -c complements the set of characters in string1 with respect to the universe of characters whose ASCII codes are 01 through 0377 octal; -d deletes all input characters in string1; -s squeezes all strings of repeated output characters that are in string2 to single characters. In either string the notation a-b means a range of characters from a to b in increasing ASCII order. The character `' followed by 1, 2 or 3 octal digits stands for the character whose ASCII code is given by those digits. A `' followed by any other character stands for that character. The following example creates a list of all the words in `file1' one per line in `file2', where a word is taken to be a maximal string of alphabetics. The second string is quoted to protect `' from the Shell. 012 is the ASCII code for newline. tr -cs A-Za-z '12' <file1 >file2 SEE ALSO
ed(1), ascii(7), expand(1) BUGS
Won't handle ASCII NUL in string1 or string2; always deletes NUL from input. 7th Edition April 29, 1985 TR(1)
Man Page

4 More Discussions You Might Find Interesting

1. Linux

What is your favorite Linux distro?

(173 Replies)
Discussion started by: milhan
173 Replies

2. Shell Programming and Scripting

What is your favorite Linux distro?

(173 Replies)
Discussion started by: milhan
173 Replies

3. Shell Programming and Scripting

Tetris Game -- based on a shell script (new algorithm)

GitHub - deepgrace/tetris: Tetris implementation in all kinds of Programming Languages Usage: bash Tetris_Game ] ] ] ] Range: #!/bin/bash # Tetris Game // The Art Of Shell Programming box0=(4 30) box1=(4 30 4 32) box2=(4 30 5 32) box3=(4 28 4 30 4 32) box4=(4 28 4 30... (69 Replies)
Discussion started by: complex.invoke
69 Replies

4. Open Source

What is your favorite Linux distro?

What is your favorite Linux distro? and possibly why? Personally, I have Fedora 3 on my computer. I have used Ubuntu and Slackware, too. But I think I liked Ubuntu more, maybe because of its speed and easy installation of packages. (192 Replies)
Discussion started by: milhan
192 Replies