curl -b cookie.txt -c cookie.txt http://blog.dasomoli.org/
curl -b cookie.txt -c cookie.txt http://blog.dasomoli.org/
다운로드는 요즘은 https://www.strokesplus.net/ 에서 하는 것 같다.
윈도우즈 환경에서 개발하다보니, Linux 환경에서 사용하는 몇 가지 command들이 그립다.
touch 명령을 주고 싶은데, 다들 설치하라고 할 수도 없고..
Windows 환경에서 touch와 같이 날짜와 시간만 업데이트 하고 싶을 때, 해당디렉토리로 이동한 후, 다음과 같이 하면 된단다.
copy /b filename.ext +,,
이동하기 싫으면 다음과 같이 하면 된다.
copy /b D:\PATH\foo\filename.ext+,, D:\PATH\foo\filename.ext
이걸 왜 하냐고?
다음과 같은 코드 때문이다.
char *pStrTime=__TIME__;
char *pStrDate=__DATE__;
참고: http://superuser.com/questions/10426/windows-equivalent-of-the-linux-command-touch
git을 윈도우즈에서 쓸 때의 꽤 짜증나는 점은 줄바꿈 문자(CR/LF vs LF-윈도우즈에서는 CR,LF를 쓰고, Unix계열에서는 LF만 쓴다)이다.
CR,LF 문자가 바뀌면 git에서는 그냥 소스 파일 전체를 다른 파일로 여기기 때문에, 크로스 플랫폼 환경에선 매우 짜증난다. 그래서 이를 해결하기 위한 옵션이 있는데, core.autocrlf 옵션이다.
autocrlf 옵션은 세가지 값을 가질 수 있다.
1. true: “git config –global core.autocrlf true”
commit할 때 CR,LF -> LF, check out할 때 LF -> CR,LF.
2. input: “git config –global core.autocrlf input”
commit할 때만 CR,LF -> LF.
3. false: “git config –global core.autocrlf false”
그냥 그대로 쓴다. 저장소에도 CR이 저장된다.
또한, patch를 이용하는 경우에도 CR,LF와 LF 문제로 걸리적 거릴 때가 많다.
가령, format-patch를 만들면, patch 파일은 LF를 사용하게 되는데, 이걸 am으로 적용할 때도 제대로 작동하지 않는다. 같은 곳에서 그냥 연달아 format-patch HEAD^ -> reset HEAD^ -> am 0001-blah.patch를 했을 때조차 적용되지 않는 걸 보면 그냥 아주 돌아버린다.
도움을 주기 위한 옵션은 git am의 –keep-cr 이다.
참고: https://git-scm.com/book/ko/v1/Git%EB%A7%9E%EC%B6%A4-Git-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0
Stackoverflow에 외국에 맞는게 올라가 있다.
Locale 설정에 따라 달라져야 한다. 맞게 바꾸면.
set hour=%time:~0,2%
if “%hour:~0,1%” == ” ” set hour=0%hour:~1,1%
echo hour=%hour%
set min=%time:~3,2%
if “%min:~0,1%” == ” ” set min=0%min:~1,1%
echo min=%min%
set secs=%time:~6,2%
if “%secs:~0,1%” == ” ” set secs=0%secs:~1,1%
echo secs=%secs%
set year=%date:~0,4%
echo year=%year%
set month=%date:~5,2%
if “%month:~0,1%” == ” ” set month=0%month:~1,1%
echo month=%month%
set day=%date:~8,2%
if “%day:~0,1%” == ” ” set day=0%day:~1,1%
echo day=%day%
set datetimef=%year%%month%%day%_%hour%%min%%secs%
참고: http://stackoverflow.com/questions/1192476/format-date-and-time-in-a-windows-batch-script
Atom Editor의 유용한 패키지 모음: http://www.atomtips.com/atom-most-useful-packages/
그냥 기본으로 명령 프롬프트에서 telnet을 치면 명령이 없다고 안된다.
‘제어판’ -> ‘프로그램 및 기능’ -> ‘Windows 기능 사용/사용 안함’ -> ‘텔넷 클라이언트’ 에 체크 -> ‘확인’
위 과정을 하고 나면, telnet을 입력하면 잘 되는 것을 볼 수 있다.