by shigemk2

当面は技術的なことしか書かない

trコマンド

標準入力から読み込まれた文字列を変換したり削除したりする。

tr オプション 文字列1 文字列2

下記の例は、ファイルの小文字をすべて大文字として表示さしている。

shige@shigemk2 ~% cat /etc/hosts | tr 'a-z' 'A-Z'
##
# HOST DATABASE
#
# LOCALHOST IS USED TO CONFIGURE THE LOOPBACK INTERFACE
# WHEN THE SYSTEM IS BOOTING.  DO NOT CHANGE THIS ENTRY.
##
127.0.0.1	LOCALHOST

shige@shigemk2 ~% cat /etc/hosts                 
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1	localhost

出典については…気にするな!