Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- lsof
- web.xml
- vscode
- Quartz
- xargs
- context
- 단축키
- import
- Mac
- VirtualBox
- maVen
- grep
- Source
- port
- 줄바꿈 문자
- 네트워크
- tomcat
- JavaScript
- find
- GIT
- ssh
- IntelliJ
- plugin
- Windows 10
- bash
- profile
- netsh
- resource
- Windows
- Eclipse
Archives
- Today
- Total
목록2024/05/17 (3)
develog
[bash] .bash_profile 에서 .bashrc 실행하기
# .bash_profile# Get the aliases and functionsif [ -f ~/.bashrc ]; then . ~/.bashrcfi
카테고리 없음
2024. 5. 17. 11:15
[bash] su 로 다른 계정으로 전환하고 스크립트 실행하기
root 계정으로 ssh 에 로그인하고su 로 user01 계정으로 전환하고 스크립트를 실행한다[root@dev01 ~]# su - user01 -c "~/my_script.sh" su 옵션OPTIONS -, -l, --login Start the shell as a login shell with an environment similar to a real login: -c, --command=command Pass command to the shell with the -c option.
카테고리 없음
2024. 5. 17. 10:30