顯示具有 iOS 標籤的文章。 顯示所有文章
顯示具有 iOS 標籤的文章。 顯示所有文章

2016年10月17日 星期一

MAC finder show hide hidden file

顯示隱藏檔案:defaults write com.apple.finder AppleShowAllFiles TRUE;\killall Finder

不顯示隱藏檔案:defaults write com.apple.finder AppleShowAllFiles FALSE;\killall Finder

Install Geany on Mac OSX

About the App

Install the App

  1. Press Command+Space and type Terminal and press enter/return key.
  2. Run in Terminal app:
    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null ; brew install caskroom/cask/brew-cask 2> /dev/null
    and press enter/return key. Wait for the command to finish.
  3. Run:
    brew cask install geany

2016年10月14日 星期五

Git tab autocomplete on OSX 10.11 El Capitan



Step 1: Download auto completion script:


>> cd ~ 
>> curl -O https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash


Step 2: Update .bash_profile


>> echo "source ~/git-completion.bash" >> .bash_profile


2016年10月13日 星期四

How to Enable Tab Completion in Mac OS X Terminal



  • Use pico, nano, vi or whatever your favorite text editor is to edit/create .inputrc, I’ll use pico for this walkthrough.
pico .inputrc
  • Paste in the following three lines of rules:
set completion-ignore-case on
set show-all-if-ambiguous on
TAB: menu-complete
  • Press Control+O to save changes to .inputrc followed by Control+X to quit
  • Close and reopen Terminal for the rules to take effect
  • Start typing a path or command and press the Tab key to see this feature in action