Различия
Здесь показаны различия между двумя версиями данной страницы.
Предыдущая версия справа и слева Предыдущая версия Следующая версия | Предыдущая версия | ||
dev:other:efficientprog [2012/03/14 15:24] jamis7005 [Linux/bash] |
dev:other:efficientprog [2012/09/24 18:52] (текущий) jamis7005 [Eclipse] |
||
---|---|---|---|
Строка 17: | Строка 17: | ||
Useful findings: | Useful findings: | ||
- | * find . -type f -exec sed -i "s/'/'/g" {} \; | + | * find and replace text in group of files:<code> |
+ | find . -type f -exec sed -i "s/old_text/new_text/g" {} \;</code> | ||
- | ===== Eclipse ===== | ||
- | * use shortcuts list (Ctrl+Shift+L) | ||
- | * use Key Promoter plugin. Help-Install New Software -> http://update.mousefeed.com/ | ||
- | * cool shortcuts:<code> | ||
- | Ctrl-Shift-T Goto to class (use capitals) | ||
- | Ctrl-Shift-R Goto to file | ||
- | Ctrl-O Symbol list | ||
- | Ctrl-J Incremental search | ||
- | Ctrl-E Recently edited files | ||
- | Alt-Shift-L Introduce variable | ||
- | Alt-Shift-Up Escalating selection</code> | ||
- | * [[http://www.prom-auto.ru/articles/eclipse/eclipse.keys.pdf|other shortcuts]] | ||