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 |
Tags
- grep
- tomcat
- 줄바꿈 문자
- Mac
- port
- JavaScript
- VirtualBox
- Quartz
- 단축키
- xargs
- Source
- resource
- netsh
- bash
- Windows 10
- find
- IntelliJ
- GIT
- ssh
- vscode
- plugin
- maVen
- context
- import
- web.xml
- Windows
- profile
- 네트워크
- lsof
- Eclipse
Archives
- Today
- Total
목록2024/02 (23)
develog
[linux] group 추가/삭제
그룹 추가/삭제 # 그룹 추가 $ groupadd mygroup1 # 그룹 삭제 $ groupdel mygroup1 그룹 비밀번호 등록/수정/삭제 # 그룹에 비밀번호 등록/수정 $ gpasswd mygroup1 # 그룹 비밀번호 삭제 $ gpasswd -r mygroup1 그룹에 사용자 추가/삭제 # 그룹에 user01 사용자 추가 $ gpasswd -a user01 mygroup1 # 그룹에서 user01 사용자 삭제 $ gpasswd -d user01 mygroup1 사용자의 그룹 조회 # user01 사용자의 그룹 조회 $ groups user01
카테고리 없음
2024. 2. 21. 14:53
[oracle] shell script 에서 sqlplus 로 프로시저 실행하기
#!/bin/bash sqlplus username/password@ORA
카테고리 없음
2024. 2. 21. 14:09
[bash] shell script 실행시 실행하는 명령어 표시하기
# set -x 라인 이후로 실행되는 명령어는 화면에 출력한다 set -x # set +x 라인 이후로 실행되는 명령어는 화면에 출력하지 않는다 set +x
카테고리 없음
2024. 2. 21. 10:49
[bash] warning: here-document at line 24 delimited by end-of-file (wanted `EOF')
쉘 스크립트에서 EOF 사용시 오류날 때 warning: here-document at line 24 delimited by end-of-file (wanted `EOF') 종료 EOF 왼쪽에 공백을 없앤다 sftp root@192.168.2.34
카테고리 없음
2024. 2. 20. 16:01
[oracle] 사용자 비밀번호 변경
alter user scott identified by "temp1234!@";
카테고리 없음
2024. 2. 20. 10:42