일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Eclipse
- port
- 단축키
- Windows
- plugin
- profile
- Mac
- bash
- Windows 10
- maVen
- Source
- web.xml
- vscode
- xargs
- GIT
- lsof
- IntelliJ
- Quartz
- JavaScript
- netsh
- context
- tomcat
- find
- ssh
- import
- 줄바꿈 문자
- 네트워크
- VirtualBox
- grep
- resource
- Today
- Total
목록2024/07 (18)
develog
https://github.com/coreybutler/nvm-windows/releases/tag/1.1.12 Release v1.1.12 · coreybutler/nvm-windowsWhat's Changed Fix symlink detect if it points to nothing by @Tester798 in #963 Update README.md by @coreybutler in #1005 Change Winget Releaser job to ubuntu-latest by @sitiom in #1016 Update REA...github.com
$ echo $(echo "/en/main" | sed 's/\//\\\//g')# output\/en\/main
function api_response($code, $body) { $data = array( 'code' => $code, 'body' => $body ); return rest_ensure_response(new WP_REST_Response($data, $code));}
원격 브랜치 삭제 시도시 아래 오류가 발생# 원격 브랜치 삭제 시도$ git push origin --delete developerror: unable to delete 'develop': remote ref does not exist git fetch --prune 으로 최신 상태로 갱신하고 다시 확인한다# 로컬의 원격 브랜치 목록을 최신 상태로 갱신한다git fetch --prune# 브랜치 목록을 다시 확인한다git branch -a
## LF 로 변환:set ff=unix## CRLF 로 변환:set ff=dos## 파일 정보를 확인한다$ file aa.txtaa.txt: ISO-8859 text, with CRLF line terminators## vi 로 파일을 연다$ vi aa.txt## vi 에서 아래 명령을 입력한다:set ff=unix## 저장하고 vi 를 종료한다:wq## 파일 정보를 다시 확인한다$ file aa.txtaa.txt: ISO-8859 text
https://access.redhat.com/solutions/10154 How to use yum to download a package without installing it - Red Hat Customer PortalHow do I use yum to download a package without installing it?access.redhat.com https://stackoverflow.com/questions/4419268/how-do-i-download-a-package-from-apt-get-without-installing-it How do I download a package from apt-get without installing it?I have a computer witho..