Entries Tagged 'Mac OS X' ↓

Mac OS X moving by word in terminal

I had a problem with moving forward and backward by word (like CTRL+left, CTRL+right in others terminals) using Mac OS X system terminal. The solution to resolve it is very simple :) Open Preferences » Settings » Keybord and add key mappping:

Option + cursor left = \033b
Option + cursor right = \033f

How to run screen as daemon?

Use this command:

$ screen -dmS screen_name command

How to replace text in many files?

perl -pi -w -e 's/source_text/destination_text/g;' *.php

How to flush dns cache in Mac OS X Leopard ?

$ dscacheutil -flushcache