一起学习网 一起学习网


批量转换目录下文件编码的shell脚本代码

网络编程 批量转换目录下文件编码的shell脚本代码 06-21

一例批量转换目录下文件编码的shell脚本代码。

需求描述:
由于从window转linux过来,很多原来win下的gbk文件需要转换成utf8。

以下脚本仅判断非utf8文件转换成utf8文件,并且默认非utf8文件为gbk,如果文件类型不一致需要修改。

例子:


#!/bin/bash
# File Name: iconv.sh
# Author: wanggy
# site: www.gimoo.net
#
show_file()
{
for file in `ls $1`
do
if [ -d $1"/"$file ];then
#目录递归调用show_file函数
show_file $1"/"$file
else
#文件
echo $1"/"$file
file_type=`file $1"/"$file`
type=`echo $file_type |grep UTF-8`
if [ -z "$type" ];then
echo "为空非utf-8编码,转换"
iconv -f gbk -t utf8 $1"/"$file -o $1"/"$file
else
echo "utf8编码不用转换"
fi
fi
done
}
path=./shell
show_file $path

Linux shell脚本中字符串连接的方法
如果想要在变量后面添加一个字符,可以用一下方法:$value1=home$value2=${value1}"="echo$value2把要添加的字符串变量添加{},并且需要把$放到外面。这样输出

Linux shell脚本编程if语句的使用方法(条件判断)
if语句格式if条件thenCommandelseCommandfi别忘了这个结尾If语句忘了结尾fitest.sh:line14:syntaxerror:unexpectedendoffiif的三种条件表达式ifcommandthenif函数then命令执行成

Linux oracle数据库自动备份自动压缩脚本代码
#!#backup.sh##系统名称sysname=gzsyspath=/home/oracle/databak/$sysname/v_date=$(date'+%Y%m%d%H%M%S')logfile=$syspath/backup.$v_date.logechobackup_time$logfiledate'+%Y-%m-%d%H:%M:%S'$logfile#数据


编辑:一起学习网

标签:脚本,文件,语句,条件,递归