emacs --daemon to run in the background.
emacsclient.emacs24 <filename/dirname> to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
- Undo -
C-/ - Redo -
C-? - Change case: 1. Camel Case :
M-c2. Upper Case :M-u
- Lower Case :
M-l
emacs --daemon to run in the background.
emacsclient.emacs24 <filename/dirname> to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
C-/C-?M-c
2. Upper Case : M-uM-l| #!/bin/sh | |
| POSTGISCONTRIB_PATH=`pg_config --sharedir`/contrib | |
| POSTGIS=$(find $POSTGISCONTRIB_PATH -name 'postgis.sql') | |
| POSTGIS_COMMENTS=$(find $POSTGISCONTRIB_PATH -name 'postgis_comments.sql') | |
| POSTGIS_SPATIAL=$(find $POSTGISCONTRIB_PATH -name 'spatial_ref_sys.sql') | |
| if [ -z "$POSTGIS" ] || [ -z "$POSTGIS_SPATIAL" ]; then | |
| echo " * Not found postgis contrib files." | |
| exit 1 |