'2022/02/08'에 해당되는 글 2건

  1. 2022.02.08 sort 컬럼 별 정렬하기
  2. 2022.02.08 openCV + openGL
Linux2022. 2. 8. 17:59

ls 해서 용량별로 보고 싶어 검색

 

흐음.. 아름답지 않아!! (길어서 외우기 싫다는 의미)

$ ls --sort=size -l

 

이런 산뜻한 걸 먼저 알려줬어야지!!

-S Sort by file size, largest first

[링크 : https://www.cyberciti.biz/faq/linux-ls-command-sort-by-file-size/]

 

$ sort -k 3,3 myFile

[링크 : https://unix.stackexchange.com/questions/104525/sort-based-on-the-third-column]

 

-k, --key=POS1[,POS2]
       start a key at POS1 (origin 1), end it at POS2 (default end of line)

[링크 : https://linux.die.net/man/1/sort]

 

우분투 내 도움말에는 key 라고 나오네. 설명이 와닫지 않아!

       -k, --key=KEYDEF
              sort via a key; KEYDEF gives location and type

'Linux' 카테고리의 다른 글

bash set -e set -x  (0) 2022.06.22
linux cache clear  (0) 2022.02.11
elementary os  (0) 2022.01.28
linux 터미널 pause, resume  (0) 2022.01.11
systemctl TTYPath  (0) 2022.01.06
Posted by 구차니
Programming/openGL2022. 2. 8. 12:47

mat 변수가 나오는걸 봐서는 구버전이라.. 요즘꺼에 돌려보려면 조금 고생할 듯.

openGL은 텍스쳐까진 보질 못해서 코드를 이해 못하겠네..

 

[링크 : https://webnautes.tistory.com/1098]

'Programming > openGL' 카테고리의 다른 글

opengl glortho gluperspective  (0) 2023.08.28
glReadPixels() 와 glUseProgram()  (0) 2022.11.17
glMatrixMode()  (0) 2020.04.14
opengl superbible 3rd 리눅스 빌드 패키지  (0) 2020.04.08
opengl super bible 3rd - 4,5 chapter  (0) 2020.04.06
Posted by 구차니