일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- grep
- JavaScript
- port
- web.xml
- Quartz
- GIT
- lsof
- vscode
- 네트워크
- Source
- IntelliJ
- bash
- find
- import
- Eclipse
- Windows
- Windows 10
- profile
- VirtualBox
- xargs
- tomcat
- ssh
- context
- 줄바꿈 문자
- plugin
- netsh
- resource
- Mac
- 단축키
- maVen
- Today
- Total
목록OS & Shell/Linux (83)
develog
소스, test.sh #/bin/bash getStr(){ eval "$1='abc str'" } getStr retVal echo $retVal 실행결과, ./test.sh abc str
소스, test.sh #/bin/bash getSum(){ num1=$1 num2=$2 let "num = $num1 + $num2" return $num } getSum 11 22 retVal=$? echo $retVal 실행결과, ./test.sh 33
SecureCRT 6.1.1 ▶ Global Options, Default Session 수정 Optioins > Global Options > General > Default Session > Edit Default Settings ▷ Session Options - Default > Terninal > Emulation- Terminal: VT100 -> Xterm 으로 변경 - Anis color 체크- Use color scheme 체크 ▷ Session Options - Default > Terninal > AppearanceCurrent color scheme: Black / Floral White 로 변경 ▶ Global Options, ANSI Color 수정Optioins > Global..
ssh dev01@127.0.0.1 mkdir -p /home/dev01/a/b/c
:%s/from_str/to_str/c /c -> 바꾸기 전 사용자에게 확인
rsync -avR -e ssh (파일 또는 디렉토리) 아이디@IP:경로 rsync -avR -e ssh WebRoot dev01@127.0.0.1:www data 폴더를 sync ※ -e ssh 는 없어도 동작함 방법1 # /src/my/repo/data 경로의 파일을 # /dst/my/repo/data 경로로 복사한다 rsync -avz -e ssh \ /src/my/repo/data \ my@127.0.0.1:/dst/my/repo/ 방법2 # /src/my/repo/data 경로의 파일을 # /dst/my/repo/data 경로로 복사한다 rsync -avz -e ssh \ /src/my/repo/data/* \ my@127.0.0.1:/dst/my/repo/data