출처 - GNOME DEVELOPER
https://developer.gnome.org/glib/stable/glib-Date-and-Time-Functions.html
'Programming > C Library' 카테고리의 다른 글
리눅스 커널 시간 설정 date / hwclock (0) | 2016.05.11 |
---|---|
[C언어] 문자열 관련 함수 (0) | 2016.03.30 |
출처 - GNOME DEVELOPER
https://developer.gnome.org/glib/stable/glib-Date-and-Time-Functions.html
리눅스 커널 시간 설정 date / hwclock (0) | 2016.05.11 |
---|---|
[C언어] 문자열 관련 함수 (0) | 2016.03.30 |
shell script에서 하는 산술연산
#!/bin/sh
refer=1800
resol=4096
adc0=3060
result=`expr $(($refer*$adc0/$resol))`
echo $result
Ex11. 비트맵 파일 정보 갖어오기 (0) | 2016.12.19 |
---|---|
Ex10. Makefile - shared library (so 파일 만들기) (0) | 2016.12.15 |
chmod (0) | 2016.05.02 |
linux svn command (1) | 2016.04.28 |
Linux 디바이스 드라이버의 작성 (0) | 2016.04.27 |
잭크와 콩나무 - TISTORY
Ex10. Makefile - shared library (so 파일 만들기) (0) | 2016.12.15 |
---|---|
shell script에서 하는 산술연산 (0) | 2016.05.03 |
linux svn command (1) | 2016.04.28 |
Linux 디바이스 드라이버의 작성 (0) | 2016.04.27 |
자신만의 Command 만들기 - alias (0) | 2016.04.26 |
svn 체크아웃
svn co 169.168.0.001
메세지 추가
svn commit -m "add new function"
svn 현재 정보 보기
svn info
특정 로그 자세히 보기
svn log -v -r 125
폴더 및 파일 삭제
svn delete --force old_folder/
svn commit -m "delete old_folder"
폴더 및 파일 추가
svn add new_folder/
svn commit -m "add new_folder"
소스 코드의 각 라인을 수정한 사람 보기
svn blame source.c
현재 작업 내용을 최신내용으로 갱신
svn up
현재 작업 내용을 리비전 1로 갱신(최신 리비전보다 이전으로 되돌리는 것도 가능하다.)
svn up -r 1
shell script에서 하는 산술연산 (0) | 2016.05.03 |
---|---|
chmod (0) | 2016.05.02 |
Linux 디바이스 드라이버의 작성 (0) | 2016.04.27 |
자신만의 Command 만들기 - alias (0) | 2016.04.26 |
find (0) | 2016.04.14 |
chmod (0) | 2016.05.02 |
---|---|
linux svn command (1) | 2016.04.28 |
자신만의 Command 만들기 - alias (0) | 2016.04.26 |
find (0) | 2016.04.14 |
Linux Commands (0) | 2016.04.14 |
# vi ~/.bashrc
# ll drwxr-xr-x 45 ysw ysw 4096 Apr 26 17:01 ./ drwxr-xr-x 8 root root 4096 Oct 30 20:39 ../ -rw------- 1 ysw ysw 25500 Apr 21 20:37 .bash_history -rw-r--r-- 1 ysw ysw 220 Sep 22 2015 .bash_logout -rw-r--r-- 1 ysw ysw 3901 Feb 12 17:47 .bashrc
linux svn command (1) | 2016.04.28 |
---|---|
Linux 디바이스 드라이버의 작성 (0) | 2016.04.27 |
find (0) | 2016.04.14 |
Linux Commands (0) | 2016.04.14 |
SVN(Subvision) 간단히 사용하기 (0) | 2016.04.14 |
CString → int
int형 = _ttoi(CString형);
int → CString
CString형.Format( _T("%d"), int형);
[콤보박스] 콤보박스 초기화 (0) | 2016.09.07 |
---|---|
[시리얼 통신] 연결된 시리얼 포트만 보여주기 (0) | 2016.09.07 |
정적 라이브러리와 동적 라이브러리의 비교(lib와 dll의 장단점) (0) | 2016.04.07 |
조사식 - 오류: ... 기호를 찾을 수 없습니다. (0) | 2016.04.07 |
멀티바이트와 유니코드 (0) | 2016.04.07 |
Help -> Help Contents
Integer Data Types (0) | 2016.04.15 |
---|
Help -> Help Contents
Delay Function (0) | 2016.04.15 |
---|
$ find . -name *.c -print find: paths must precede expression Usage: find [-H] [-L] [-P] [path...] [expression] This happens because *.c has been expanded by the shell resulting in find actually receiving a command line like this: find . -name bigram.c code.c frcode.c locate.c -print That command is of course not going to work. Instead of doing things this way, you should enclose the pattern in quotes: $ find . -name ?*.c? -print
Linux 디바이스 드라이버의 작성 (0) | 2016.04.27 |
---|---|
자신만의 Command 만들기 - alias (0) | 2016.04.26 |
Linux Commands (0) | 2016.04.14 |
SVN(Subvision) 간단히 사용하기 (0) | 2016.04.14 |
Ex10. Makefile - lv4 (0) | 2016.02.25 |