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
- Source
- xargs
- find
- resource
- grep
- Windows 10
- Eclipse
- plugin
- maVen
- tomcat
- lsof
- port
- 줄바꿈 문자
- netsh
- JavaScript
- 네트워크
- vscode
- IntelliJ
- Windows
- ssh
- GIT
- web.xml
- context
- 단축키
- profile
- bash
- Mac
- import
- Quartz
- VirtualBox
Archives
- Today
- Total
목록2024/02/19 (3)
develog
[linux] oracle instant client 설치
https://www.ibm.com/docs/ko/openpages/9.0.0?topic=client-installing-oracle-instant-linux Oracle Instant Client 설치 (Linux)적용 대상: Oracle Instant Client를 사용할 수 있습니다. 시작하기 전에 Oracle Instant Client주제를 검토하여 설치 경로에 따른 요구사항을 확인하십시오. 필수 사용자 및 그룹이 작성되었는지 확인하십www.ibm.com
카테고리 없음
2024. 2. 19. 23:16
[bash] base64
# base64 인코딩 $ echo "hello" | base64 aGVsbG8K # base64 디코딩 $ base64 -d
카테고리 없음
2024. 2. 19. 22:57
[bash] openssl 로 base64 인코딩, 디코딩 하기
# base64 로 인코딩$ echo "web" | openssl enc -e -base64d2ViCg==# base64 를 디코딩$ echo "d2ViCg==" | openssl enc -d -base64web ENCODED=$(echo "web" | openssl enc -e -base64)echo $ENCODED # d2ViCg==DECODED=$(echo $ENCODED | openssl enc -d -base64)echo $DECODED # web
카테고리 없음
2024. 2. 19. 10:33