Newsgroups: fj.questions.unix
Path: galaxy.trc.rwcp.or.jp!jaist-news!cs.titech!nirvana.cs.titech!wnoc-tyo-news!rena!toku
From: toku@dit.co.jp (Yoshitaka Tokugawa)
Subject: Re: OOMOJI filename Killer?
Organization: dit Co., Ltd. Tokyo, Japan
References: <2eeqp3$4o@nameserv.sys.hokudai.ac.jp>
Message-ID: <1993Dec13.015204.28467@dit.co.jp>
Sender: news@dit.co.jp (DIT NEWS Manager)
Date: Mon, 13 Dec 1993 01:52:04 GMT
Lines: 23
Xref: galaxy.trc.rwcp.or.jp fj.questions.unix:4110
X-originally-archived-at: http://galaxy.rwcp.or.jp/text/cgi-bin/newsarticle2?ng=fj.questions.unix&nb=4110&hd=a
X-reformat-date: Mon, 18 Oct 2004 15:18:22 +0900
X-reformat-comment: Tabs were expanded into 4 column tabstops by the Galaxy's archiver. See http://katsu.watanabe.name/ancientfj/galaxy-format.html for more info.

nakamura@dm4a.metall.hokudai.ac.jp (Akifumi Nakamura) writes:
>$B>p$1$J$$<ALd$G$9!#(B
>Unix$B$G!"%U%!%$%kL>$NBgJ8;z>.J8;z$r!JHf3SE*3Z$K!KJQ49$9$k$K$O!"(B
>$B$I$&$9$k$N$,$h$$$G$7$g$&!)(B

tr$B$r;H$($P0lH/$G$9$M!#(B

% echo AbCdEfG | tr A-Z a-z

$B$H$+$d$C$F$_$l$P$o$+$j$^$9!#(Bcsh$B$@$C$?$i(B

#!/bin/csh
foreach i (*)
set newname = `echo "$i" | tr A-Z a-z`
if ("$newname" != "$i") then
mv $i $newname
endif
end
exit 0

$B$H$+$9$l$P$$$$$s$8$c$J$$$G$9$+!)(B

$BFA@n(B
