기본 콘텐츠로 건너뛰기

벡터와 행렬에 관련된 그림들

리눅스 매뉴얼: Pipeline, 다중명령

CLI에서 여러 개 명령 

- 두가지 이상의 명령을 동시에 작성하기 위해 세미콜론(;)을 사용합니다.
sgoing@sgoing-virtual-machine:~$ mkdir why; cd why
sgoing@sgoing-virtual-machine:~/why$
sgoing@sgoing-virtual-machine:~/why$ pwd
/home/sgoing/why

Pipeline

- 프로그램: 명령을 순서대로 진행시킴
- 하나의 프로그램(프로세스)에서 다른 프로그램으로 결과를 입력시키는 형태를 pipeline이라고 합니다. 
- grep: 어떤 부분에서 필요한 행을 찾는 명령어
sgoing@sgoing-virtual-machine:~/why$ grep --help
사용법: grep [옵션]... 패턴 [파일]...
Search for PATTERN in each FILE.
Example: grep -i 'hello world' menu.h main.c
...

- 웹으로 부터 어떠한 문서를 다운받아 linux.txt로 생성
 sgoing@sgoing-virtual-machine:~/why$ wget -O linux.txt https://en.wikipedia.org/wiki/Linux  #wget는 웹으로 부터 다운받을 경우 사용하는명령
--2018-10-13 23:18:42--  https://en.wikipedia.org/wiki/Linux
Resolving en.wikipedia.org (en.wikipedia.org)... 103.102.166.224, 2001:df2:e500:ed1a::1
접속 en.wikipedia.org (en.wikipedia.org)|103.102.166.224|:443... 접속됨.
HTTP request sent, awaiting response... 200 OK
Length: 525351 (513K) [text/html]
Saving to: ‘linux.txt’
linux.txt                100%[==================================>] 513.04K   866KB/s    in 0.6s   
2018-10-13 23:18:43 (866 KB/s) - ‘linux.txt’ saved [525351/525351]

sgoing@sgoing-virtual-machine:~/why$ ls -l
합계 516
-rw-r--r-- 1 sgoing sgoing 525351 10월 13 20:07 linux.txt

- 다운 받은 파일을 터미널 화면에 나타내기 위해 cat 명령을 사용합니다. 
sgoing@sgoing-virtual-machine:~/why$ cat linux.txt
- 위와 같이 wget를 사용하여 다운받은 파일은  ᅟHTML code 형식입니다. 그러므로 웹상에서 copy - paste를 실행하여 텍스트(.txt) 형식의 파일을 만들고 위의 명령을 다시 실행하면  정상적으로 출력됩니다. 
- 위 문서에 linux 문구가 포함된  행만을 나타내기 위해 grep를 사용합니다. 
sgoing@sgoing-virtual-machine:~/why$ grep linux linux.txt
Software libraries, which contain code that can be used by running processes. On Linux systems using ELF-format executable files, the dynamic linker that manages use of dynamic libraries is known as ld-linux.so. If the system is set up for the user to compile software themselves, header files will also be included to describe the interface of installed libraries. ...

- ls --help 중에서 sort를 포함하는 문구를 출력하고자 하는 경우 
sgoing@sgoing-virtual-machine:~/why$ ls --help |  grep sort 
                      #'ls --help'의 결과를 'grep 패턴 파일'의 형식 중 파일의 인자로 전달합니다. 
Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.
  -c                         with -lt: sort by, and show, ctime (time of last
                               with -l: show ctime and sort by name;
                               otherwise: sort by ctime, newest first
  -f                         do not sort, enable -aU, disable -ls --color
...
즉 pipe(|)는 이전의 결과를 다음에 전달해 줍니다. 위의 경우는 ls --help의 내용을 pipe 다음의 명령(프로그램) grep sort에 전달해줍니다. 
"grep 패턴 파일"의 형식에서 pipe 이전의 명령의 결과는 파일이 됩니다. 
그러면 위의 결과에서 file이 포함된 행을 grep하기 위해서는 다음과 같습니다. 
sgoing@sgoing-virtual-machine:~/why$ ls --help | grep sort |grep file
  -S                         sort by file size, largest first

- 다음은 현재 실행되고 있는 프로그램들의 상황을 보여줍니다. 
sgoing@sgoing-virtual-machine:~/why$ ps aux
USER        PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root          1  0.0  0.2 159836  9224 ?        Ss   21:52   0:05 /sbin/init splash
...
- 위의 결과에서 python이 포함된 행을 출력하는 경우 
sgoing@sgoing-virtual-machine:~/why$ ps aux | grep python
# pa aux의 결과는 'grep python 파일'에서 파일로 전달됩니다. 
root        790  0.0  0.4 178960 17368 ?        Ssl  21:52   0:00 /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers
sgoing     4086  0.0  0.4  93600 20568 tty2     S+   23:26   0:00 /home/sgoing/anaconda3/bin/python completion.py
sgoing     4091  0.0  0.4  65108 19692 tty2     S+   23:26   0:00 /usr/bin/python3.6 /home/sgoing/.vscode/extensions/ms-python.python-2018.9.0/pythonFiles/jedi/evaluate/compiled/subprocess/__main__.py /home/sgoing/.vscode/extensions/ms-python.python-2018.9.0/pythonFiles
sgoing     4571  0.0  0.0  22824  1032 pts/0    S+   23:56   0:00 grep --color=auto python

댓글

이 블로그의 인기 게시물

[Linear Algebra] 유사변환(Similarity transformation)

유사변환(Similarity transformation) n×n 차원의 정방 행렬 A, B 그리고 가역 행렬 P 사이에 식 1의 관계가 성립하면 행렬 A와 B는 유사행렬(similarity matrix)이 되며 행렬 A를 가역행렬 P와 B로 분해하는 것을 유사 변환(similarity transformation) 이라고 합니다. $$\tag{1} A = PBP^{-1} \Leftrightarrow P^{-1}AP = B $$ 식 2는 식 1의 양변에 B의 고유값을 고려한 것입니다. \begin{align}\tag{식 2} B - \lambda I &= P^{-1}AP – \lambda P^{-1}P\\ &= P^{-1}(AP – \lambda P)\\ &= P^{-1}(A - \lambda I)P \end{align} 식 2의 행렬식은 식 3과 같이 정리됩니다. \begin{align} &\begin{aligned}\textsf{det}(B - \lambda I ) & = \textsf{det}(P^{-1}(AP – \lambda P))\\ &= \textsf{det}(P^{-1}) \textsf{det}((A – \lambda I)) \textsf{det}(P)\\ &= \textsf{det}(P^{-1}) \textsf{det}(P) \textsf{det}((A – \lambda I))\\ &= \textsf{det}(A – \lambda I)\end{aligned}\\ &\begin{aligned}\because \; \textsf{det}(P^{-1}) \textsf{det}(P) &= \textsf{det}(P^{-1}P)\\ &= \textsf{det}(I)\end{aligned}\end{align} 유사행렬의 특성 유사행렬인 두 정방행렬 A와 B는 'A ~ B' 와 같...

[sympy] Sympy객체의 표현을 위한 함수들

Sympy객체의 표현을 위한 함수들 General simplify(x): 식 x(sympy 객체)를 간단히 정리 합니다. import numpy as np from sympy import * x=symbols("x") a=sin(x)**2+cos(x)**2 a $\sin^{2}{\left(x \right)} + \cos^{2}{\left(x \right)}$ simplify(a) 1 simplify(b) $\frac{x^{3} + x^{2} - x - 1}{x^{2} + 2 x + 1}$ simplify(b) x - 1 c=gamma(x)/gamma(x-2) c $\frac{\Gamma\left(x\right)}{\Gamma\left(x - 2\right)}$ simplify(c) $\displaystyle \left(x - 2\right) \left(x - 1\right)$ 위의 예들 중 객체 c의 감마함수(gamma(x))는 확률분포 등 여러 부분에서 사용되는 표현식으로 다음과 같이 정의 됩니다. 감마함수는 음이 아닌 정수를 제외한 모든 수에서 정의됩니다. 식 1과 같이 자연수에서 감마함수는 factorial(!), 부동소수(양의 실수)인 경우 적분을 적용하여 계산합니다. $$\tag{식 1}\Gamma(n) =\begin{cases}(n-1)!& n:\text{자연수}\\\int^\infty_0x^{n-1}e^{-x}\,dx& n:\text{부동소수}\end{cases}$$ x=symbols('x') gamma(x).subs(x,4) $\displaystyle 6$ factorial 계산은 math.factorial() 함수를 사용할 수 있습니다. import math math.factorial(3) 6 a=gamma(x).subs(x,4.5) a.evalf(3) 11.6 simpilfy() 함수의 알고리즘은 식에서 공통사항을 찾아 정리하...

sympy.solvers로 방정식해 구하기

sympy.solvers로 방정식해 구하기 대수 방정식을 해를 계산하기 위해 다음 함수를 사용합니다. sympy.solvers.solve(f, *symbols, **flags) f=0, 즉 동차방정식에 대해 지정한 변수의 해를 계산 f : 식 또는 함수 symbols: 식의 해를 계산하기 위한 변수, 변수가 하나인 경우는 생략가능(자동으로 인식) flags: 계산 또는 결과의 방식을 지정하기 위한 인수들 dict=True: {x:3, y:1}같이 사전형식, 기본값 = False set=True :{(x,3),(y,1)}같이 집합형식, 기본값 = False ratioal=True : 실수를 유리수로 반환, 기본값 = False positive=True: 해들 중에 양수만을 반환, 기본값 = False 예 $x^2=1$의 해를 결정합니다. solve() 함수에 적용하기 위해서는 다음과 같이 식의 한쪽이 0이 되는 형태인 동차식으로 구성되어야 합니다. $$x^2-1=0$$ import numpy as np from sympy import * x = symbols('x') solve(x**2-1, x) [-1, 1] 위 식은 계산 과정은 다음과 같습니다. $$\begin{aligned}x^2-1=0 \rightarrow (x+1)(x-1)=0 \\ x=1 \; \text{or}\; -1\end{aligned}$$ 예 $x^4=1$의 해를 결정합니다. solve() 함수의 인수 set=True를 지정하였으므로 결과는 집합(set)형으로 반환됩니다. eq=x**4-1 solve(eq, set=True) ([x], {(-1,), (-I,), (1,), (I,)}) 위의 경우 I는 복소수입니다.즉 위 결과의 과정은 다음과 같습니다. $$x^4-1=(x^2+1)(x+1)(x-1)=0 \rightarrow x=\pm \sqrt{-1}, \; \pm 1=\pm i,\; \pm1$$ 실수...