您现在的位置是:网站首页> 编程资料编程资料
利用shell删除数据表中指定信息和字段对应的文件_linux shell_
2023-05-26
289人已围观
简介 利用shell删除数据表中指定信息和字段对应的文件_linux shell_
利用mysql shell命令读取数据库信息,删除指定字段,以及字段对应的文件,适用Linux平台。
前面变量定义为数据基本配置
#!/bin/bash
#Program
# delete the database'info whick state is 3
#History:
# 2014/2/23 cjp First release
# 2014/3/5/ cjp change value'setting on 117
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/usr/local/bin:/usr/local/sbin:~/bin
export PATH
host="127.0.0.1"
port="3306"
user="user"
passwd="passwd"
dbname="database"
tablename="table"
field="t_field"
outField="t_id,t_path"
fileRootPath="/var/www/html/apath"
filePath=""
#checkdown data
mysql -h$host -P$port -u$user -p$passwd $dbname -e "SET NAMES utf8;SELECT ${outField} FROM ${tablename} WHERE ${field} = 3" > data_info
date -d '1970-01-01 UTC 946684800 seconds' +"%Y-%m-%d %z" >> del_log.log
#delete image file and mysql data
sed '1d' data_info | while read line
do
echo $line > findtemp
awk '{print $2}' findtemp > imagetemp
cat imagetemp | while read imagedata
do
filePath=${fileRootPath}${imagedata}
echo $filePath >> del_log.log
rm -f $filePath
done
awk '{print $1}' findtemp > idtemp
cat idtemp | while read iddata
do
mysql -h$host -P$port -u$user -p$passwd $dbname -e "SET NAMES utf8;DELETE FROM ${tablename} WHERE s_id = ${iddata}"
done
done
rm -f data_info
rm -f imagetemp
rm -f idtemp
echo "^-^ clean!"
相关内容
- nginx多server日志分割脚本分享_linux shell_
- 图片批量压缩大小脚本分享_linux shell_
- shell统计pv和uv、独立ip的方法_linux shell_
- 脚本自动添加crontab示例_linux shell_
- bash获取当前路径示例_linux shell_
- shell脚本实现ssh自动登录功能分享_linux shell_
- 分享一个实用的iptables脚本(各种过滤写法参考)_linux shell_
- linux shell流程控制语句实例讲解(if、for、while、case语句实例)_linux shell_
- shell脚本中28个特殊字符的作用简明总结_linux shell_
- shell基础学习中的字符串操作、for循环语句示例_linux shell_
