AML Logo Design Project
Non-designer designs the design of laboratory’s symbol, interestingly.
Table of Contents
Shell(이하 셸)은 OS마다 다른 고유명사를 가지고 있습니다. 윈도우는 PowerShell이고 맥에서는 Terminal..
개발자(가 되기 원하는 사람으)로서 피할 수 없는 것이 바로 셸 입니다.
손에 익어 문제없이 사용하는 분들이 제 주위 대다수이지만 배움이 느린 저는 이렇게 기록을 남길 필요를 느꼈습니다.
자주 사용하는 커멘드는 사실 정해져있고 그 그룹이 크지 않아서, 오히려 자리에 앉아 파는 것 보다는 프로그램을 많이 운용해보는 것이 좋을 것 같습니다. 저는 이 글을 작성하며 소화하겠습니다.
진행에 앞서 명령칸에 $ 나 >가 붙어있을 경우 그 다음에 있는 구절만 쳐서 실행하면 됩니다.
예. 맥
$ mkdir mancity21plwinner
윈도우
> mkdir mancity21plwinner
라고 기재됐을 경우 셸에는 오직 mkdir mancity21plwinner 만 입력하고 엔터(return)하면 됩니다.
우선 디렉토리의 개념. 디렉토리는 간단히 우리가 흔히 아는 폴더라고 보면 됩니다. 셸을 운용하는 것을 쉽게 이하하기 위해 비유적으로, ‘껌뻑이는 명령어’를 ‘여러분’으로 생각하시고, ‘셸’은 ‘온갖 공간’으로 가정하면 됩니다.
여러분이 현 시점 집에 있든 카페에 있든 지금 어떠한 공간에 있죠? 껌뻑이는 명령어도 같은 상황입니다. 공간에도 위계가 있습니다.
영화 테넷을 보러 CGV강남점에 간다고 쳤을 때 테넷을 상영하는 6관까지 가는데에 여러분은 많은 공간 위계를 지납니다. 우선 강남역 스타플렉스라는 건물에 가고 4층에서 티켓을 출력합니다. 6층에 올라가 6관의 I열에 입장합니다. 이 경우 공간 위계는 [스타플렉스]-[cgv 4층|cgv 6층]-[6관]-[I열]이겠죠?
셸도 정확히 그러한 로직으로 운용하면 됩니다. 같은 명령어를 쳐도 셸의 작업 위치(pwd, 후술 예정)가 어디냐에 따라 에러를 뱉을 수도, 원하던 작업을 수행할 수도 있습니다.
닫을 수도 있습니다 exit를 치면 닫을 수 있습니다.
$ exit
[Process Completed] # 이후에 셸은 운영이 안됩니다.
꿀팁 하나, clear를 치면 위에있는 셸 스크립트 텍스트가 사라집니다(현재 디렉토리, 변수 등 다른 데이터는 유지됩니다 단지 화면만 깨끗해질 뿐)
Users라는 디렉토리안에 woolee 디렉토리가 있고 현재 셸의 작업 디렉토리는 woolee입니다.
$ pwd
/Users/woolee
저의 디바이스의 사용자 이름 즉 {yourname} 은 woolee임을 참고해주세요.
$ cd ~
/Users/woolee
$ cd mancity
$ pwd
/Users/woolee/mancity
$ cd fw
$ pwd
/Users/woolee/mancity/fw
# 차상위 폴더로 가기
$ cd ..
$ pwd
/Users/woolee/mancity
# 차차상위 폴더로 가기
$ cd ../..
$ pwd
/Users/
$
> cd ~
\Users\woolee
> cd mancity
> pwd
Path
----
C:\Users\woolee\mancity
> cd fw
> pwd
Path
----
C:\Users\woolee\mancity\fw
# 차상위 폴더로 가기
> cd ..
> pwd
Path
----
C:\Users\woolee\mancity\
# 차차상위 폴더로 가기
> cd ..
> cd ..
> pwd
Path
----
C:\Users\
>
(현재 작업위치 : /Users/woolee)
$ cd mancity
$ pwd
/Users/woolee/mancity
$ ls
manager fw mf df manchesterisred
$ cd manager
$ ls
pep.txt
$ cd ..
$ mkdir gk
$ ls
manager fw mf df manchesterisred gk
$ rmdir manchesterisred
$ ls
manager fw mf df gk
$ cd ..
$ pwd
/Users/woolee
$ mkdir mancity/manchesterisblue
$ cd mancity
$ ls
manager fw mf df gk manchesterisblue
$
맥의 경우 디렉토리 내에 하위 디렉토리, 파일 등 온갖 것이 없어야 rmdir 명령을 수용합니다. 지우고 싶은 디렉토리가 있는데, 그 하위 디렉토리, 파일도 지워도 상관없다 싶으시면 $ rm -rf {디렉토리 path} 로 지우시면 됩니다. ‘-‘뒤에 붙는 알파벳은 셸 명령어의 세부조건이라고 보시면 됩니다. 후에 다룰 기회가 있으면 좋겠습니다.
> cd mancity
> ls
Directory: C:\Users\woolee\mancity
Mode LastWriteTime Length Name
---- ------------- ------ ----
d---- 10/26/1990 0:00 AM manager
d---- 10/26/1990 0:00 AM fw
d---- 10/26/1990 0:00 AM mf
d---- 10/26/1990 0:00 AM df
d---- 10/26/1990 0:00 AM manchesterisred
> cd manager
> ls
Directory: C:\Users\woolee\mancity\manager
Mode LastWriteTime Length Name
---- ------------- ------ ----
a---- 10/26/1990 0:00 AM pep.txt
> cd ..
> mkdir gk
> ls
Directory: C:\Users\woolee\mancity
Mode LastWriteTime Length Name
---- ------------- ------ ----
d---- 10/26/1990 0:00 AM manager
d---- 10/26/1990 0:00 AM fw
d---- 10/26/1990 0:00 AM mf
d---- 10/26/1990 0:00 AM df
d---- 10/26/1990 0:00 AM manchesterisred
d---- 10/26/1990 0:00 AM gk
> rmdir manchesterisred
> ls
Directory: C:\Users\woolee\mancity
Mode LastWriteTime Length Name
---- ------------- ------ ----
d---- 10/26/1990 0:00 AM manager
d---- 10/26/1990 0:00 AM fw
d---- 10/26/1990 0:00 AM mf
d---- 10/26/1990 0:00 AM df
d---- 10/26/1990 0:00 AM gk
> cd ..
> pwd
Path
----
C:\Users\woolee\
> mkdir mancity\manchesterisblue
> cd mancity
> ls
Directory: C:\Users\woolee\mancity
Mode LastWriteTime Length Name
---- ------------- ------ ----
d---- 10/26/1990 0:00 AM manager
d---- 10/26/1990 0:00 AM fw
d---- 10/26/1990 0:00 AM mf
d---- 10/26/1990 0:00 AM df
d---- 10/26/1990 0:00 AM gk
d---- 10/26/1990 0:00 AM manchesterisblue
>
(맥 기준)
$ pwd
/Users/woolee
$ cd mancity/fw
$ pwd
/Users/woolee/mancity/fw
$ ls
aguero.txt mahrez.txt jesus.txt ederson.txt
$ touch messi.txt
$ ls
aguero.txt mahrez.txt jesus.txt ederson.txt messi.txt
# messi.txt라는 파일을 messi2.txt로 복사합니다(명령시에 messi2.txt 파일은 존재하지 않아도 됨)
$ cp messi.txt messi2.txt
$ ls
aguero.txt mahrez.txt jesus.txt ederson.txt messi.txt messi2.txt
# messi2.txt 삭제
$ rm messi2.txt
$ ls
aguero.txt mahrez.txt jesus.txt ederson.txt messi.txt
$ pwd
/Users/woolee/mancity/fw
# 현재 작업위치의 messi.txt를 홈/mancity/trans_in로 복사합니다.
$ cp messi.txt ~/mancity/trans_in
$ cd ../trans_in
$ ls
messi.txt
# 홈/mancity/fw의 ederson.txt를 홈/mancity/gk 디렉토리로 이동합니다.
$ mv ~/mancity/fw/ederson.txt ~/mancity/gk/ederson.txt
$ cd ~/mancity/gk
$ ls
bravo.txt ederson.txt
$ cd ~
$ pwd
/Users/woolee
$
$ cp -R mancity mcfc
$ ls
mancity mcfc
$ mv mcfc mancity
$ ls
mancity
$
> pwd
Path
----
C:\Users\woolee\
> cd mancity/fw
> pwd
Path
----
C:\Users\woolee\mancity\fw
> ls
Directory: C:\Users\woolee\mancity\fw
Mode LastWriteTime Length Name
---- ------------- ------ ----
a---- 10/26/1990 0:00 AM aguero.txt
a---- 10/26/1990 0:00 AM mahrez.txt
a---- 10/26/1990 0:00 AM jesus.txt
a---- 10/26/1990 0:00 AM ederson.txt
> New-Item messi.txt -type file
> ls
Directory: C:\Users\woolee\mancity\fw
Mode LastWriteTime Length Name
---- ------------- ------ ----
a---- 10/26/1990 0:00 AM aguero.txt
a---- 10/26/1990 0:00 AM mahrez.txt
a---- 10/26/1990 0:00 AM jesus.txt
a---- 10/26/1990 0:00 AM ederson.txt
a---- 10/01/2020 0:00 AM messi.txt
# messi.txt라는 파일을 messi2.txt로 복사합니다(명령시에 messi2.txt 파일은 존재하지 않아도 됨)
> cp messi.txt messi2.txt
> ls
Directory: C:\Users\woolee\mancity\fw
Mode LastWriteTime Length Name
---- ------------- ------ ----
a---- 10/26/1990 0:00 AM aguero.txt
a---- 10/26/1990 0:00 AM mahrez.txt
a---- 10/26/1990 0:00 AM jesus.txt
a---- 10/26/1990 0:00 AM ederson.txt
a---- 10/01/2020 0:00 AM messi.txt
a---- 10/01/2020 0:00 AM messi2.txt
# messi2.txt 삭제
> rm messi2.txt
> ls
Directory: C:\Users\woolee\mancity\fw
Mode LastWriteTime Length Name
---- ------------- ------ ----
a---- 10/26/1990 0:00 AM aguero.txt
a---- 10/26/1990 0:00 AM mahrez.txt
a---- 10/26/1990 0:00 AM jesus.txt
a---- 10/26/1990 0:00 AM ederson.txt
a---- 10/01/2020 0:00 AM messi.txt
# 현재 작업위치의 messi.txt를 홈/mancity/trans_in로 복사합니다.
> cp messi.txt ~\mancity\trans_in
> cd ..\trans_in
> ls
Directory: C:\Users\woolee\mancity\trans_in
Mode LastWriteTime Length Name
---- ------------- ------ ----
a---- 10/01/2020 0:00 AM messi.txt
# 홈/mancity/fw의 ederson.txt를 홈/mancity/gk 디렉토리로 이동합니다.
> mv ~\mancity\fw\ederson.txt ~\mancity\gk\ederson.txt
> cd ..\gk
> ls
Directory: C:\Users\woolee\mancity\gk
Mode LastWriteTime Length Name
---- ------------- ------ ----
a---- 10/26/1990 0:00 AM bravo.txt
a---- 10/01/2020 0:00 AM ederson.txt
> cd ~
> pwd
Path
----
C:\Users\woolee\
>
rm 명령에 뒤에 쓸만한 설정
(맥 기준)
cat는 파일의 내용을 셸 화면에 프린트할 수 있습니다.
$ pwd
/Users/woolee
$ cd fw
$ less messi.txt
#####Content is Displayed#####
Born in 1987 June 24
Argentina
Left foot
FC Barcelona(2004~)
messi.txt (END)
$ q
##############################
$ cat messi.txt
Born in 1987 June 24
Argentina
Left foot
FC Barcelona(2004~)
messi.txt (END)
> pwd
Path
----
C:\Users\woolee\
> cd fw
> more messi.txt
#####Content is Displayed#####
Born in 1987 June 24
Argentina
Left foot
FC Barcelona(2004~)
messi.txt (END)
> q
##############################
> cat messi.txt
Born in 1987 June 24
Argentina
Left foot
FC Barcelona(2004~)
messi.txt (END)
>
명령어(약어) - 전체이름 / 설명 pwd - print working directory / 현재 작업 디렉토리 보기 hostname - my computer’s network name / 작업 컴퓨터의 네트워크명 mkdir - make directory / 디렉토리 만들기 cd - change directory / 작업 디렉토리 바꾸기 ls - list directory / 디렉토리 리스트 보이기 rmdir - remove directory / 디렉토리 지우기 pushd - push directory / 디렉토리 밀기(?) popd - pop directory / 디렉토리 뽑기(?) cp - copy a file or directory / 디렉토리 복사하기 mv - move a file or directory / 디렉토리 옮기기 less - page through a file / cat - print the whole file / 파일 요약내용 열람 xargs - execute arguments / 아그먼트 실행 find - find files / 파일 찾기 grep - find things inside files man - read a manual page apropos - find what man page is appropriate env - look at your environment echo - print some arguments export - export/set a new environment variable exit - exit the shell sudo - em-super-powered
명령어(약어) - 전체이름 / 설명 pwd - print working directory hostname - my computer’s network name mkdir - make directory cd - change directory ls - list directory rmdir - remove directory pushd - push directory popd - pop directory cp - copy a file or directory robocopy - robust copy mv - move a file or directory more - page through a file type - print the whole file forfiles - run a command on lots of files dir -r - find files select-string - find things inside files help - read a manual page helpctr - find what man page is appropriate echo - print some arguments set - export/set a new environment variable exit - exit the shell runas - em-super-powered
https://sacstory.tistory.com/entry/PowerShell-기초-명령어-복사-삭제-이동
https://ko.wikipedia.org/wiki/%ED%8C%8C%EC%9B%8C%EC%85%B8
계속 업데이트 예정
Non-designer designs the design of laboratory’s symbol, interestingly.
How to Use GSDS GPU Server
Fairness Definitions Explained
Fairness ML is the remedy for human’s cognition toward AI
과학자의 자세
미션: Shell 운용하는와중에 구글 검색하느라 시간 버리지 않기
Life Advice by Tim Minchin / 이번생을 조금이나마 의미있게 살고자
TensorflowLite & Coral Arsenal
Hivemapper,a decentralized mapping network that enables monitoring and autonomous navigation without the need for expensive sensors, aircraft, or satellites.
AMP Robotics, AI Robotics Company
자율주행 자동차 스타트업 오로라
Here I explore Aurora, tech company founded by Chris Urmson
Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks
미국의 AI 스타트업 50곳
2014 mid 맥북프로에 리눅스 얹기
Sparse Encoder, one of the best functioning AutoEncoder
Basic Concept of NN by formulas
싱글뷰 이미지로 다차원뷰를 가지는 3D 객체를 생성하는 모델
고통의 코랄 셋업(맥북)
HTML 무기고(GFM방식)