このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
- 03 Zed editor 設定 [Windowsでビルド]
Tag Cloud
このページへのアクセス
今日: 1 / 昨日: 1
総計: 895
最近の更新
このページへのアクセス
今日: 1 / 昨日: 1
総計: 895
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
}