利用cut指令取出檔案內指定位置內容
利用cut指令取出檔案內指定位置內容
//////ouiOpenAccount.txt//////
{“account”:”011330107″,”service_tel”:”04-8888-9999″,”status”:0}
//////////////////////////////
cut -c 13-21 ouiOpenAccount.txt > Account.txt #011330107
利用cut指令取出檔案內指定位置內容
//////ouiOpenAccount.txt//////
{“account”:”011330107″,”service_tel”:”04-8888-9999″,”status”:0}
//////////////////////////////
cut -c 13-21 ouiOpenAccount.txt > Account.txt #011330107