function google { /usr/bin/links g:"$1 $2 $3 $4 $5 $6 $7 $8"; }
$ google 2*4 $ google 1 dollar in euros $ google translate aller $ google weather
asked 11 May '10, 01:43 joe |
You can shorten your function and catch more than 8 options with. function google { /usr/bin/links g:"$*"; } You might also be interested in http://goosh.org/ answered 11 May '10, 02:46 Nathan |
Wont limit you to 8 arguments
answered 11 May '10, 02:47 olejorgenb |
For those who enjoy using a terminal within a desktop environment and use the firefox:
Thx for the inspiration! answered 11 May '10, 07:18 MaikB Thanks.It is useful. Can it be done in new-tab? I mean 'firefox -search' is always opening new window.I want it to open search results in new-tab. I've tried 'firefox -new-tab -search <term>' but it doesn't work.
(12 May '10, 05:30)
maszynista
|
Please accept an answer, or provide more details on what you're looking for.