shell 操作檔案示例

2021-05-07 13:50:33 字數 610 閱讀 6828

#!/bin/sh

find boss_file/ -name "?abcd????????????.???" |

while read boss_file

doecho "boss file name: $boss_file"

boss_export_time=`head -1 "$boss_file" | awk -f ',' ''`

echo "boss file export time: $boss_export_time"

cat $boss_file | while read boss_file_line

doif expr "$boss_file_line" : 'h,' > /dev/null || expr "$boss_file_line" : 't,' > /dev/null ; then

echo "$boss_file_line" >> jjcs_boss_sync_file_bad.dat

else

echo "$boss_file_line" | replace ",/r" ",,$boss_export_time" >> jjcs_boss_sync_file.dat

fidone

done

shell指令碼使用記錄一 操作檔案

一,連線遠端資料庫 保證在伺服器上能使用mysql命令列,至少要安裝mysql客戶端 bin bash hostname ip port 3306 username username password password dbname test tablename shell test insert ...

Python IO操作 檔案操作

讀檔案使用python內建的函式open 可以開啟乙個檔案 類似c語言 f open file.txt r f.read f.close 檔案讀寫時可能都會出錯,產生ioerror,一旦出錯f.close 就不能用,所以我們可以使用try finally try f open file.txt r ...

基本操作 檔案操作

開啟檔案 f open yesterday r encoding utf 8 讀寫 f open yesterday w encoding utf 8 寫讀 f open yesterday a encoding utf 8 追加寫讀 f open yesterday wb 寫讀 二進位制檔案 vi...