develog

[Linux] ssh, mkdir 본문

OS & Shell/Linux

[Linux] ssh, mkdir

냐옴 2015. 1. 12. 11:08

test.sh

#/bin/bash

dirPath=$1
echo $dirPath

if [ -z $1 ]; then
        echo please input directory name
        exit
fi

ssh dev01@127.0.0.1 '[ ! -d baseDir/'$dirPath' ] && mkdir -p baseDir/'$dirPath
echo result=$?

echo end


실행 (aa 디렉토리가 없으면 생성함)

aa
result=0
end


실행 (aa 디렉토리가 있으면 생성안함)

aa
result=1
end


'OS & Shell > Linux' 카테고리의 다른 글

[Linux] 날짜 검색  (0) 2015.01.14
[Linux] shell script, array, loop  (0) 2015.01.12
[Linux] vi, clear last search highlight  (0) 2015.01.12
[Linux] shell script, 블록 입력  (0) 2015.01.10
[Linux] shell script, if  (0) 2015.01.10
Comments