데이터 사이언스 언어 ∽̱ 9월6일 |
|
[언어] R ∽̱ 9월20일 |
|
[언어] 파이썬 ∽̱ 9월27일 |
|
[언어] API 프로그래밍 ∽̱ 10월4일 |
|
데이터 사이언스 자료구조 ∽̱ 10월11일 |
|
[자료구조] 시계열 데이터 ∽̱ 10월18일 |
|
중간고사 ∽̱ 10월25일 |
|
[자료구조] 지리 공간 데이터 ∽̱ 11월01일 |
|
[자료구조] NLP - 텍스트 마이닝(R) ∽̱ 11월08일 |
|
[자료구조] NLP - 파이썬 ∽̱ 11월15일 |
|
빅데이터 시각화 ∽̱ 11월22일 |
|
기계학습 - 예측모형 ∽̱ 11월29일 |
|
DevOps - 도커, HPC, 스파크 ∽̱ 12월06일 |
|
제품화 ∽̱ 12월13일 |
|
기말고사 ∽̱ 12월20일 |
|
Action | Files | Folders |
---|---|---|
Inspect | ls | ls |
View content | cat | ls |
Navigate to | cd | |
Move | mv | mv |
Copy | cp | cp -r |
Create | nano | mkdir |
Delete | rm | rmdir, rm -r |
The following is an overview of a standard Unix filesystem. The exact hierarchy depends on the platform, so you may not see exactly the same files/directories on your computer:
#
character and run to the end of the line;
comments in SQL start with --
,
and other languages have other conventions..
(pronounced “dot”)..txt
means “text file”, .png
means “Portable Network Graphics file”,
and so on. These conventions are not enforced by most operating systems:
it is perfectly possible (but confusing!) to name an MP3 sound file homepage.html
.
Since many applications use filename extensions to identify the MIME type of the file,
misnaming files may cause those applications to fail.-v
, or two dashes followed by a word, such as --verbose
,
while DOS applications use a slash, such as /V
.
Depending on the application, a flag may be followed by a single argument, as in -o /tmp/output.txt
...
(pronounced “dot dot”).*.txt
to a program,
it is usually necessary to write it as '*.txt'
(with single quotes)
so that the shell will not try to expand the *
wildcard.*
matches zero or more characters,
so that *.txt
matches all files whose names end in .txt
.