본문 바로가기

기초공부

[HTML5]기초 태그, 특수 문자 기초 태그와 특수 문자에 대해 설명합니다 모든 포스트 목록 기초 단락 태그 : 제목(Headline) 태그 ~ 로 나눠져 있으며 굵은 글자 효과와 줄간격을 띄우는 효과가 있다 : 단락(Paragraph) 태그 : 줄바꿈(Line Break) 태그(HTML 코드에서는 이 태그를 이용하여 개행해야 한다) 단락/텍스트 꾸미기 태그 : 가로줄(Horizontal Line) 태그 : 작성된 형식 유지(Pre-formatted Text) 태그 - 이 태그 안에는 다른 태그는 적용되지 않는다 : 단락 인용(Block Quotation) 태그 : 주소(adress) 태그 : 텍스트 강조(Emphasis) 태그 : 강한 강조(Strong Emphasis) 태그 : 작은 글자(Small) 태그 : 하이라이트 효과(high..
[WEB]포스트 목록 HTML 기초 기초, 구조 태그 기초 태그, 특수문자 목록 태그 표 태그 링크 태그 이미지 태그, 오디오 태그, 비디오 태그 프레임 태그 form 태그 CSS 기초 CSS FONT PROPERTY ORDER JavaScript 기초 eval PHP 기초 cookie getenv Superglobals, $_SERVER mysqli_connect mysqli_query mysqli_connect_errno isset str_replace XML XXE를 위한 속성 XML 공부 생활코딩 정리 WEB1 WEB2 - CSS 언어 - 자바스크립트 클라이언트 - 웹브라우저 자바스크립트 Flask 빠르게 시작하기 - 기본 애플리케이션 빠르게 시작하기 - 디버그 모드 빠르게 시작하기 - 라우팅 빠르게 시작하기 - UR..
[Linux]명령어 nc 모든 포스트목록 NAME nc - TCP/IP swiss army knife nc [-options] hostname port[s] [ports] ... nc -l -p port [-options] [hostname] [port] DESCRIPTION netcat is a simple unix utility which reads and writes data across network connections, using TCP or UDP protocol. It is designed to be a reliable "back-end" tool that can be used directly or easily driven by other programs and scripts. At the same time, it..
[Linux]명령어 ssh 모든 포스트목록 NAME ssh — OpenSSH SSH client (remote login program) ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec] [-D [bind_address:]port] [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11] [-i identity_file] [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address] [-S ctl_path] [-W host:port] [-w..
[Linux]명령어 xxd 모든 포스트목록 NAME xxd - make a hexdump or do the reverse. SYNOPSIS xxd -h[elp] xxd [options] [infile [outfile]] xxd -r[evert] [options] [infile [outfile]] DESCRIPTION xxd creates a hex dump of a given file or standard input. It can also convert a hex dump back to its original binary form. Like uuencode(1) and uudecode(1) it allows the transmission of binary data in a `mail-safe' ASCII representation..
[Linux]명령어 hexdump 모든 포스트목록 NAME hexdump, hd — ASCII, decimal, hexadecimal, octal dump SYNOPSIS hexdump [-bcCdovx] [-e format_string] [-f format_file] [-n length] [-s skip] file ... hd [-bcdovx] [-e format_string] [-f format_file] [-n length] [-s skip] file ... DESCRIPTION The hexdump utility is a filter which displays the specified files, or the standard input, if no files are specified, in a user specified forma..
[Linux]명령어 cat, touch 모든 포스트목록 cat(concatenate) 개요표준입력 내용을 파일에 저장하는 명령어 파일들을 잇는 명령어파일 내용을 출력하는 명령어 형식cat > 파일 cat 파일+ > 파일cat [옵션] 파일* 1,2의 경우 값이 저장되는 파일이 존재하지 않으면 새로 생성한다 1,2의 경우 어떤 출력 재지정 명령어를 쓰는지에 따라 결과가 달라질 수 있다 (출력 재지정에 관한 명렁은 여기) 3의 경우 파일을 지정하지 않으면 표준입력 내용을 화면에 출력한다 1, 3의 경우 ctrl+d 입력 시 표준입력이 종료된다 옵션[-n] 3의 경우 파일 내용 앞에 줄번호를 붙인다 예시 kjs@virtualbox:~$ cat > temp.txt # 첫 번째 경우 실행 test 1 2 kjs@virtualbox:~$ cat temp..
[Linux]명령어 mkdir, rmdir 모든 포스트목록 mkdir(make directory) 개요: 디렉토리를 생성하는 명령어 형식: mkdir [옵션] 디렉토리+ 중간 디렉토리가 없다면 실행되지 않는다 옵션 [-p] 중간 디렉토리도 자동 생성한다 예시 kjs@virtualbox:~$ mkdir test # 옵션x kjs@virtualbox:~$ ls linux memo.txt test kjs@virtualbox:~$ mkdir ~/temp/test # temp라는 중간 디렉토리가 없을 경우 mkdir: `/home/kjs/temp/test' 디렉토리를 만들 수 없습니다: 그런 파일이나 디렉터리가 없습니다 kjs@virtualbox:~$ mkdir -p ~/temp/test # -p kjs@virtualbox:~$ ls linux memo...