일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- IntelliJ
- Windows
- 단축키
- Windows 10
- profile
- Source
- grep
- vscode
- Quartz
- VirtualBox
- Mac
- port
- bash
- JavaScript
- GIT
- tomcat
- context
- web.xml
- 네트워크
- 줄바꿈 문자
- lsof
- plugin
- ssh
- xargs
- find
- import
- netsh
- Eclipse
- resource
- maVen
- Today
- Total
목록2024/05 (14)
develog
## 나노초 9 자리$ date '+%Y-%m-%d %H:%M:%S.%N'2024-05-31 15:30:32.587635288## 나노초 6 자리$ date '+%Y-%m-%d %H:%M:%S.%6N'2024-05-31 15:30:34.777216## 나노초 3 자리$ date '+%Y-%m-%d %H:%M:%S.%3N'2024-05-31 15:30:39.690
// %s (string)// %d (integer)// %f (float)// like % -> like %%$wpdb->prepare// select$wpdb->get_results // multi row, multi column$wpdb->get_row // one row, multi column$wpdb->get_col // multi row, one column$wpdb->get_var // one value (one row, one column)// insert, update, delete$wpdb->query$query = $wpdb->prepare( "INSERT INTO $wpdb->postmeta ( post_id, meta_key, meta_value..
select 쿼리 실행 후 아래 버튼을 클릭한다 버튼을 클릭하면 우측에 카운트가 표시된다
# .bash_profile# Get the aliases and functionsif [ -f ~/.bashrc ]; then . ~/.bashrcfi
root 계정으로 ssh 에 로그인하고su 로 user01 계정으로 전환하고 스크립트를 실행한다[root@dev01 ~]# su - user01 -c "~/my_script.sh" su 옵션OPTIONS -, -l, --login Start the shell as a login shell with an environment similar to a real login: -c, --command=command Pass command to the shell with the -c option.