'프로그래밍 > LINUX' 카테고리의 다른 글
파일의 특정 행만을 확인하고 싶을 때 (0) | 2012.03.28 |
---|---|
.bash_profile path 설정 시 (0) | 2012.03.07 |
OS 별 Bit 확인 방법 (0) | 2012.03.07 |
리눅스 터미널에서 폴더 및 파일 별 색상이 나오지 않을 때 (0) | 2012.03.06 |
vi editor에서 라인 번호 출력 및 해제 (0) | 2012.03.02 |
파일의 특정 행만을 확인하고 싶을 때 (0) | 2012.03.28 |
---|---|
.bash_profile path 설정 시 (0) | 2012.03.07 |
OS 별 Bit 확인 방법 (0) | 2012.03.07 |
리눅스 터미널에서 폴더 및 파일 별 색상이 나오지 않을 때 (0) | 2012.03.06 |
vi editor에서 라인 번호 출력 및 해제 (0) | 2012.03.02 |
.bash_profile path 설정 시 (0) | 2012.03.07 |
---|---|
리눅스&MacOS 쉘 스크립트(*.sh) 실행 방법 (0) | 2012.03.07 |
리눅스 터미널에서 폴더 및 파일 별 색상이 나오지 않을 때 (0) | 2012.03.06 |
vi editor에서 라인 번호 출력 및 해제 (0) | 2012.03.02 |
파일 분할 및 합치기 (0) | 2011.11.17 |
리눅스&MacOS 쉘 스크립트(*.sh) 실행 방법 (0) | 2012.03.07 |
---|---|
OS 별 Bit 확인 방법 (0) | 2012.03.07 |
vi editor에서 라인 번호 출력 및 해제 (0) | 2012.03.02 |
파일 분할 및 합치기 (0) | 2011.11.17 |
실행 중인 작업을 backgorund/foreground 전환 (0) | 2011.11.17 |
OS 별 Bit 확인 방법 (0) | 2012.03.07 |
---|---|
리눅스 터미널에서 폴더 및 파일 별 색상이 나오지 않을 때 (0) | 2012.03.06 |
파일 분할 및 합치기 (0) | 2011.11.17 |
실행 중인 작업을 backgorund/foreground 전환 (0) | 2011.11.17 |
파일 line 수 세기 (0) | 2011.11.17 |
리눅스 터미널에서 폴더 및 파일 별 색상이 나오지 않을 때 (0) | 2012.03.06 |
---|---|
vi editor에서 라인 번호 출력 및 해제 (0) | 2012.03.02 |
실행 중인 작업을 backgorund/foreground 전환 (0) | 2011.11.17 |
파일 line 수 세기 (0) | 2011.11.17 |
리눅스 압축 및 풀기 (0) | 2011.07.19 |
vi editor에서 라인 번호 출력 및 해제 (0) | 2012.03.02 |
---|---|
파일 분할 및 합치기 (0) | 2011.11.17 |
파일 line 수 세기 (0) | 2011.11.17 |
리눅스 압축 및 풀기 (0) | 2011.07.19 |
네임서버와 아파치 데몬 시작, 종료, 재실행 하기 (0) | 2011.06.18 |
파일 분할 및 합치기 (0) | 2011.11.17 |
---|---|
실행 중인 작업을 backgorund/foreground 전환 (0) | 2011.11.17 |
리눅스 압축 및 풀기 (0) | 2011.07.19 |
네임서버와 아파치 데몬 시작, 종료, 재실행 하기 (0) | 2011.06.18 |
putty로 서버에 원격 접속 시 한글이 깨져 보일 때 (0) | 2011.06.16 |
1. string형에서 바꾸고자 할 때
#include <algorithm>
#include <cctype>
// 위의 2개의 라이브러리 추가
string s;
> lowercase all characters
transform (s.begin(), s.end(), s.begin(), tolower);
> uppercase all characters
transform (s.begin(), s.end(), s.begin(), toupper);
[출처] http://blog.naver.com/PostView.nhn?blogId=young4862&logNo=100088120933&redirect=Dlog&widgetTypeCall=true
2. char형에서 바꾸고자 할 때
#include <string>
// string 라이브러리가 있어야 사용 가능
char c[20];
> lowercase all characters
strlwr(c);
> uppercase all characters
strupr(c);
[출처] http://blog.naver.com/PostView.nhnblogId=young4862&logNo=100088120933&redirect=Dlog&widgetTypeCall=true
반올림 함수 (0) | 2012.03.28 |
---|---|
Single char to int (0) | 2012.03.15 |
getline(cin, temp); (0) | 2011.09.26 |
Visual Studio 2010에서 콘솔 창이 바로 꺼질 때 (0) | 2011.06.22 |
C++ string tokenizer (0) | 2011.05.27 |
Single char to int (0) | 2012.03.15 |
---|---|
C++에서 소문자, 대문자 바꾸기 (0) | 2011.10.11 |
Visual Studio 2010에서 콘솔 창이 바로 꺼질 때 (0) | 2011.06.22 |
C++ string tokenizer (0) | 2011.05.27 |
String to Integer & Integer to String (0) | 2011.05.27 |
1. [파일이름].tar
압축 : tar -cvf [압축될 파일이름].tar [압축할 파일이름]
풀기 : tar -xvf [압축된 파일이름].tar
2. [파일이름].tar.gz, [파일이름].tgz, [파일이름].tar.z
압축 : tar -zcvf { [파일이름].tar.gz , [파일이름].tgz, [파일이름].tar.z } [압축할 파일이름]
풀기 : tar -zxvf { [파일이름].tar.gz , [파일이름].tgz, [파일이름].tar.z }
3. [파일이름].tar.bz2
압축 : tar -jcvf [파일이름].tar.bz2 [압축당할 파일이름]
풀기 : tar -jxvf [파일이름].tar.bz2
4. [파일이름].zip
압축 : zip [파일이름].zip [압축당할 파일이름]
풀기 : unzip [파일이름].zip
5. [파일이름].gz
압축: gzip -1/9 [파일이름] ; 1의 경우 faster, 9의 경우 better
풀기 : gunzip [파일이름].gz
6. [파일이름].bz2
풀기 : bunzip2 [파일이름].bz2
출처: http://mokuzin21.egloos.com/2363138
출처: http://blog.ohmynews.com/casiopea/131126
실행 중인 작업을 backgorund/foreground 전환 (0) | 2011.11.17 |
---|---|
파일 line 수 세기 (0) | 2011.11.17 |
네임서버와 아파치 데몬 시작, 종료, 재실행 하기 (0) | 2011.06.18 |
putty로 서버에 원격 접속 시 한글이 깨져 보일 때 (0) | 2011.06.16 |
chkconfig: command not found (1) | 2011.06.15 |