맥 터미널 미세먼지 팁 모음.

$ open aa.png

$ open -a gimp aa.png

$ open -e aa.txt


댓글

  1. 시스템에 부하주기

    $ stress -c 4

    $ brew install stress

    답글삭제
  2. 맥 터미널에서 beep음 내기

    $ tput bel

    소리가 작거나 맘에 안들면
    시스템설정에서 경고음을 바꾼다.

    답글삭제
  3. 터미널에서 클립보드 로

    $ ls ~ | pbcopy

    $ pbcopy < blogpost.txt

    $ curl http://www.google.com/doodles#oodles/archive | grep -A5 'latest-doodle on' | grep 'img src' | sed s/.*'<img src="\/\/'/''/ | sed s/'" alt=".*'/''/ | pbcopy

    답글삭제
  4. $ mdfind -onlyin ~/Documents essay

    답글삭제
  5. $ say "Never trust a computer you can't lift."

    $ say -f mynovel.txt -o myaudiobook.aiff

    답글삭제
  6. http://ss64.com/osx/

    기타 명령어 모음.

    답글삭제
  7. sips -z 32 32 *.jpeg

    일괄 영상 전처리

    답글삭제
  8. brew install rename

    디렉토리내 모든 파일 파일명 변경 테스트
    rename -nvs jpeg png *

    디렉토리내 모든 파일 파일명 변경
    rename -vs jpeg png *

    답글삭제
  9. curl -O http://192.168.0.7:8888/projA/logo.png

    답글삭제
  10. brew install rename

    rename -vs aaa bbb *

    답글삭제
  11. brew install pass

    pass init email_address

    pass insert test/www.apple.com

    pass edit test/www.apple.com

    답글삭제
  12. 실시간 날씨 정보:

    curl wttr.in/seoul

    답글삭제
  13. $ brew install homebrew/games/c2048

    $ 2048

    답글삭제
  14. brew install homebrew/games/yetris

    yetris

    답글삭제
  15. brew install ctorrent

    ctorrent *.torrent

    답글삭제
  16. sublime text3 패키지 콘트롤러 설치

    cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
    git clone git://github.com/wbond/sublime_package_control.git Package\ Control
    cd Package\ Control
    git checkout python3

    # restart Sublime Text 3 and you should have Package Control working

    답글삭제
  17. 알람기능:

    sleep 600s && mplayer path/to/mp3

    답글삭제

댓글 쓰기

이 블로그의 인기 게시물

파이썬으로 Homomorphic Filtering 하기

파이썬으로 2D FFT/iFFT 하기: numpy 버전