ユーザ用ツール

サイト用ツール


サイドバー

このページの翻訳:



最近の更新



Tag Cloud

bash:script:02_check_remote_file

02 リモートファイルチェック

chk_remote_file() {
    if [ `ssh ${1} test -e ${2} ; echo \$?` != "0" ]; then
        return 1
    fi
    return 0
}

リモートディレクトリチェック

chk_remote_dir() {
    if [ `ssh ${1} test -d ${2} ; echo \$?` != "0" ]; then
        return 1
    fi
    return 0
}
bash/script/02_check_remote_file.txt · 最終更新: 2015/05/08 15:19 by matsui