일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- profile
- 단축키
- Source
- bash
- Windows 10
- IntelliJ
- xargs
- GIT
- 줄바꿈 문자
- port
- netsh
- maVen
- context
- web.xml
- ssh
- vscode
- plugin
- Windows
- VirtualBox
- resource
- Mac
- grep
- import
- find
- tomcat
- Quartz
- 네트워크
- lsof
- JavaScript
- Eclipse
- Today
- Total
목록2024/04 (40)
develog
curl 로 접속시 오류가 발생 $ curl -X POST https://mydomain.com/projects/add/slide/ppt/scripts curl: (60) SSL certificate problem: unable to get local issuer certificate More details here: https://curl.haxx.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit ..
# 하드 링크 생성 $ ln [실제파일] [링크파일명] # 심볼릭 링크 생성 $ ln -s [실제파일] [링크파일명]
stat 명령어로 파일의 상세 날짜 정보를 확인할 수 있다 $ stat aa.sh File: aa.sh Size: 19 Blocks: 8 IO Block: 4096 regular file Device: fd02h/64770dInode: 2083852 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Context: unconfined_u:object_r:admin_home_t:s0 Access: 2024-04-12 23:48:06.253449914 +0000 Modify: 2024-04-12 23:46:07.252815178 +0000 Change: 2024-04-12 23:47:06.749132530 +0000 Birth: 2024-..
https://tecadmin.net/bash-special-variables/ Bash Special Variables ($0, $?, $#, $@, $$, $*) – TecAdminBash is a powerful shell that provides a wide range of special variables that can be used to manipulate and control the behavior of scripts. These variables provide essential information about the environment in which the script is running, including the ctecadmin.net
git status -s | cut -c4-
옵션 -c, --create create a new archive -r, --append append files to the end of an archive -t, --list list the contents of an archive -x, --extract, --get extract files from an archive -C, --directory=DIR change to directory DIR -v, --verbose verbosely list files processed -f, --file=ARCHIVE use archive file or device ARCHIVE -T, --files-from=FILE get names to extract or create from FILE 파일 압축하기 ##..