Categories
Apple

Speed Up Terminal.app Loading

Terminal.app slow to load? Create a .hushlogin file in your home directory:

touch ~/.hushlogin

Wish I had known that earlier. One of my machines had this, so at one point I must have known about this and forgot.

For those who spend a lot of time in terminal, myself included, this is awesome.

Categories
Mozilla

Shell Stats

Since it seems like everyone else on Planet Mozilla is doing it… My twist: multiple systems. Actually I found it interesting too see the variation based on what I use them for.

Home

$ history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
114 ls
91 cd
63 sh
41 ssh
37 sudo
14 pico
13 exit
12 ping
10 ./gl_tail
8 top

Home Server

$ history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
68 ls
64 dig
55 cd
45 whois
27 ps
24 clear
23 sudo
14 pico
12 top
12 exit

Work

$ history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
67 top
65 ssh
31 ls
29 sudo
26 dig
23 cd
20 ps
19 svn
17 php
8 ping
Categories
Apple Software

iPhone Native Applications

Someone created Mobile Terminal for the iPhone. That means one could in theory run SSH. Awesome.

[Hat Tip: Gizmodo]