我的腳本中有幾個錯誤,我在CentOS中構建,然後部署到Unix。我有我的腳本的頂部的家當#!/bin/bash
和腳本執行使用bash myscript.sh
bash腳本中的錯誤
LINE我的腳本:
existing[0]=""
行腳本:不知道,如果它的這一點 -
while IFS='' read -r line || [[ -n "$line" ]]; do
or this one -
if [[ $sftp_status != 0 ]]; then
ERROR: syntax error at line 118: `i=$' unexpected
行腳本:
i=$((i + 1))
這些個人行不幫助!分享完整代碼 – Inian
嘗試以調試模式運行腳本。 'bash -x myscript.sh'。 – syadav
道歉,因爲我無法在這裏提取整個腳本。它目前在某些服務器上,我無法拔出。 – mtryingtocode