독립적인 얼음대마왕님의 이글루입니다

Sources

Posts

4 posts

[Linux SVN] 명령어

1. Checkout : Need to initially run check out to connect the local source with SVN source. #svn checkout [svn path] [local path for source] or #svn co [svn path] [local path for source] ex) #svn checkout svn://xxx.xxx.xxx.xxx/svn_project_directory /home/abc/local_project_directory 2. Update # svn update

리눅스 tar, gz 압축/해제

1. tar 압축 # tar -cvf [fileName.tar] [폴더명] ex) a 폴더를 aa.tar로 압축하고자 한다면 # tar -cvf aa.tar a 2. tar 압축 해제 # tar -xvf [fileName.tar] ex) a.tar라는 tar파일 압축을 풀고자 한다면 # tar -xvf a.tar 3. tar.gz 압축 # tar -zcvf [fileName.tar.gz] [폴더명] ex) a라는 폴더를 aa.tar.gz로 압축하고자 한다면 # tar -zcvf aa.tar.gz a 4. tar.gz 압축 해제 # tar -zxvf [fileName.tar.gz] ex) aa.tar.gz라는 tar.gz파일 압축을 풀고자 한다면

[HTML, CSS Basic] How to use   & < > "

1.   // Equal to single space In HTML context no matter how many spaces you type(key board space bar) you can only get a single space " ". If you're trying to insert multiple space you need to use   ex) No shit?No shit? > No shit? 2. & // Equal to & In HTML context '&' is a preserved character for multiple uses.If you just want to print out '&amp