qingfro9님의 블로그 입니다.

homebrew 2020 top tool 정리 본문

정보보안/TOOL

homebrew 2020 top tool 정리

qingfro9 2020. 2. 25. 01:39

위 링크에 10개의 툴을 공유하고 있는데 궁금해서 좀 정리해 봤다.
 
htop
tldr
jq
ncdu
taskwarrior
tmux
 

 
htop
  • system-monitor
  • process-viewer
  • process-manager
  • 우분투에 있는 top와 유사하다.
 
tldr
  • 매뉴얼을 단순화하여 보여주는 도구
 
@qingfro9ui-MacBook.local ➜ frida  tldr --help
usage: tldr [-v] [OPTION]... SEARCH
 
 
available commands:
    -v                   print verbose output
    --version            print version and exit
    -h, --help           print this help and exit
    -u, --update         update local database
    -c, --clear-cache    clear local database
    -p, --platform=PLATFORM select platform, supported are linux / osx / sunos / common
    -r, --render=PATH    render a local page for testing purposes
 
@qingfro9ui-MacBook.local ➜ frida  tldr vim
 
 
vim
 
 
Vim (Vi IMproved), a command-line text editor, provides several modes for different kinds of text manipulation.
Pressing `i` enters edit mode. `<Esc>` goes back to normal mode, which doesn't allow regular text insertion.
More information: <https://www.vim.org>.
 
 
- Open a file:
    vim path/to/file
 
 
- View Vim's help manual:
    :help<Enter>
 
 
- Save a file:
    :write<Enter>
 
 
- Quit without saving:
    :quit!<Enter>
 
 
- Open a file at a specified line number:
    vim +line_number path/to/file
 
 
- Undo the last operation:
    u
 
 
- Search for a pattern in the file (press `n`/`N` to go to next/previous match):
    /search_pattern<Enter>
 
 
- Perform a regex substitution in the whole file:
    :%s/pattern/replacement/g<Enter>
 
jq
  • JSON 포맷을 파싱해서 깔끔하게 보여주는 도구
$ cat test.json | jq
 
 
ncdu
  • 디스크 유틸리티
  • 방향키를 사용해 목록 탐색이 가능하며 ‘d’키를 눌러 파일 삭제를 간편하게 가능
  • Enter 누르면 폴더로 들어감
  • ?누르면 헬프 나옴
 
taskwarrior
  • task management tool
 
tmux
  • 자주 쓰는 툴중 하나
  • 터미널에 세션관리 하기 편리함
 
tty-clock
  • 시계나오는 툴
 
 
 
 

'정보보안 > TOOL' 카테고리의 다른 글

[정보보안][tool]msticpy  (0) 2020.02.28
[정보보안][tool]Frida #1  (0) 2020.02.20
[정보보안][Tool]Cerbero Suite 도구 관련된 내용  (0) 2020.01.23
[TOOL]hwpscan 버전체크 문제  (0) 2018.07.29
[TOOL]hwp parser 조사  (0) 2018.07.29
Comments