您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何利用shell刪除數(shù)據(jù)表中指定信息和字段對(duì)應(yīng)的文件”,在日常操作中,相信很多人在如何利用shell刪除數(shù)據(jù)表中指定信息和字段對(duì)應(yīng)的文件問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”如何利用shell刪除數(shù)據(jù)表中指定信息和字段對(duì)應(yīng)的文件”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
利用mysql shell命令讀取數(shù)據(jù)庫(kù)信息,刪除指定字段,以及字段對(duì)應(yīng)的文件,適用Linux平臺(tái)。
前面變量定義為數(shù)據(jù)基本配置
代碼如下:
#!/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!"
到此,關(guān)于“如何利用shell刪除數(shù)據(jù)表中指定信息和字段對(duì)應(yīng)的文件”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。