当前位置: 技术问答>linux和unix
装换小写 到 大写
来源: 互联网 发布时间:2016-09-10
本文导语: 我想把一个路径下所有的文件小写转换成大写: #! /bin/bash Dir=/root/temp/sony cd $Dir for file in * do cat $file | while read line do low=$line low | tr a-z A-Z > big //这句报错啊 done do...
我想把一个路径下所有的文件小写转换成大写:
#! /bin/bash
Dir=/root/temp/sony
cd $Dir
for file in *
do
cat $file | while read line
do
low=$line
low | tr a-z A-Z > big //这句报错啊
done
done
不知道怎么搞?
#! /bin/bash
Dir=/root/temp/sony
cd $Dir
for file in *
do
cat $file | while read line
do
low=$line
low | tr a-z A-Z > big //这句报错啊
done
done
不知道怎么搞?
|
low | tr a-z A-Z > big //这句报错啊
---------------------------------------
echo $low | tr a-z A-Z >> big
---------------------------------------
echo $low | tr a-z A-Z >> big
|
try:
awk '{print toupper($0)>FILENAME}' /path/*
|
#! /bin/bash
Dir=/root/temp/sony
cd $Dir
for file in *
do
cat $file | awk '{print toupper($0)}' > $file
done
Dir=/root/temp/sony
cd $Dir
for file in *
do
cat $file | awk '{print toupper($0)}' > $file
done