pages*: update outdated pages (#11821)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
This commit is contained in:
Sebastiaan Speck
2023-12-28 16:48:20 +01:00
committed by GitHub
parent 7635f3426f
commit dcb53c85a0
83 changed files with 228 additions and 360 deletions

View File

@@ -17,7 +17,7 @@
- 모든 출력 라인 번호 매기기:
`bat -n {{file}}`
`bat --number {{file}}`
- json파일 구문 강조:

View File

@@ -9,16 +9,8 @@
- 여러 파일을 대상 파일에 연결:
`cat {{파일명1}} {{파일명2}} > {{대상_파일명}}`
`cat {{파일명1 파일명2 ...}} > {{대상_파일명}}`
- 대상 파일에 여러 파일 내용 추가:
`cat {{파일명1}} {{파일명2}} >> {{대상_파일명}}`
- 모든 출력 라인에 번호 매기기:
`cat -n {{파일명}}`
- 출력할 수 없는 문자 및 공백 문자 표시 (ASCII가 아닌 경우 `M-`접두사 포함):
`cat -v -t -e {{파일명}}`
`cat {{파일명1 파일명2 ...}} >> {{대상_파일명}}`

View File

@@ -14,7 +14,7 @@
- [L]위치 리다이렉션 후 파일을 다운로드 하고, 자동으로 이전 파일 [C]전송(재시작):
`curl --remote-name --location --continue-at - {{http://example.com/filename}}`
`curl --fail --remote-name --location --continue-at - {{http://example.com/filename}}`
- 양식 인코딩 데이터 전송(`application/x-www-form-urlencoded`유형의 POST 요청):
@@ -30,7 +30,7 @@
- 서버 인증을 위한 사용자 이름 및 비밀번호 전달:
`curl --user myusername:mypassword {{http://example.com}}`
`curl --user {{사용자 명}} {{http://example.com}}`
- 리소스에 대한 클라이언트 인증서 및 키 전달, 인증서 유효성 검사 스킵:

View File

@@ -5,15 +5,7 @@
- 임의의 경로에서 파일을 제거:
`rm {{파일의/경로}} {{다른/파일의/경로}}`
- 재귀적으로 폴더와 그 폴더내의 하위폴더들을 모두 제거:
`rm -r {{폴더의/경로}}`
- 강제로 폴더를 제거, 확인절차와 에러메시지를 띄우지 않음:
`rm -rf {{폴더의/경로}}`
`rm {{파일의/경로 다른/파일의/경로 ...}}`
- 여라개의 파일을 하나씩 확인받으면서 제거:
@@ -22,3 +14,7 @@
- 상세화면과 함께 파일을 제거, 삭제된 파일에 대해 메시지를 출력함:
`rm -v {{폴더의/경로/*}}`
- 재귀적으로 폴더와 그 폴더내의 하위폴더들을 모두 제거:
`rm -r {{폴더의/경로}}`