일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- context
- 줄바꿈 문자
- maVen
- import
- web.xml
- 네트워크
- tomcat
- VirtualBox
- find
- Quartz
- resource
- Source
- JavaScript
- 단축키
- GIT
- netsh
- port
- plugin
- Eclipse
- lsof
- Mac
- profile
- ssh
- xargs
- Windows
- bash
- IntelliJ
- vscode
- grep
- Windows 10
- Today
- Total
목록OS & Shell (146)
develog
zaiste.net/posts/few-ways-to-execute-commands-remotely-ssh/ A few ways to execute commands remotely using SSH · zaiste.net A few ways to execute commands remotely using SSH zaiste.net
hashcode.co.kr/questions/1893/%EB%A6%AC%EB%88%85%EC%8A%A4-%ED%99%98%EA%B2%BD%EB%B3%80%EC%88%98-%EC%84%A4%EC%A0%95%ED%95%A0-%EB%95%8C-env-set-export-declare [리눅스] 환경변수 설정할 때 env, set, export, declare 환경변수를 등록하는 명령어가 생각보다 많더군요. env, set, export, declare를 사용할 수 있는 것 같은데 명령어가 이렇게나 많은 이유는 무엇인가요?그리고 이 명령어들 사이에 차이점이 있나요? hashcode.co.kr
tmux 설치, 실행, 종료# tmux 설치$ sudo yum install -y tmux# tmux 실행$ tmux# tmux 종료ctrl + d pane 조작# prefix 단축키ctrl + b# pane 좌,우 분할(prefix 단축키) + %# pane 상,하 분할(prefix 단축키) + " # double quotation"# pane 창 이동(prefix 단축키) + 방향키 (상,하,좌,우)# pane 창 크기 조절(prefix 단축키) + ctrl + 방향키# pane 창 zoom in, out(prefix 단축키) + z# pane 종료(prefix 단축키) + x 2개 pane 에 명령어 동시 입력# pane 동기화 on(prefix 단축키) + :setw synchronize-pane..

stackoverflow.com/questions/4510640/what-is-the-purpose-of-in-a-shell-command What is the purpose of "&&" in a shell command? As far as I know, using & after the command is for running it in the background. Example of & usage: tar -czf file.tar.gz dirname & But how about &&? (look at this example: ht... stackoverflow.com
scutil --set HostName myHostName
~/.vim/colors 디렉토리를 생성한다 ## ~/.vim 디렉토리를 만들고 ## ~/.vim 디렉토리 안으로 이동한다 $ mkdir ~/.vim $ cd ~/.vim ## rafi/awesome-vim-colorschemes 리포지토리를 clone 받는다 $ git clone https://github.com/rafi/awesome-vim-colorschemes.git ## ~/.vim/colors 디렉토리를 생성한다 $ cp -r awesome-vim-colorschemes/colors ./ ~/.vimrc 파일을 설정한다 $ vi ~/.vimrc colo jellybeans "colorscheme jellybeans blog.gilbok.com/use-colorscheme-for-vim-on-m..