wget은 머의 약자일려나.. 혹시.. ftp의 get 명령어를 Web에서 한다고 wget 이려나?
아무튼, wget은 Ubuntu 9.10에서 2010-04-10 에 1.11.4 버전을 유지하고있다.
gnu 에서는 1.12 가 최신인데 짝수버전은 피하는 성격상 11.4를 넣은것으로 생각된다.
[링크 : http://www.gnu.org/software/wget/]
[링크 : http://ftp.gnu.org/gnu/wget/]
그리고, wget이 필요로 하는 라이브러리는 다음과 같다.
파일은 대략 237K 이다.(보기보다 덩치가 큰녀석이다!)
busybox 에서는 cookie 관련 내용은 빠져있는 것으로 생각된다.
아무튼, wget은 Ubuntu 9.10에서 2010-04-10 에 1.11.4 버전을 유지하고있다.
$ wget -V GNU Wget 1.11.4 Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://www.gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Originally written by Hrvoje Niksic <hniksic@xemacs.org>. Currently maintained by Micah Cowan <micah@cowan.name>. |
[링크 : http://www.gnu.org/software/wget/]
[링크 : http://ftp.gnu.org/gnu/wget/]
그리고, wget이 필요로 하는 라이브러리는 다음과 같다.
$ ldd /usr/bin/wget linux-gate.so.1 => (0xb78c7000) libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb78ac000) librt.so.1 => /lib/tls/i686/cmov/librt.so.1 (0xb78a3000) libssl.so.0.9.8 => /lib/i686/cmov/libssl.so.0.9.8 (0xb785c000) libcrypto.so.0.9.8 => /lib/i686/cmov/libcrypto.so.0.9.8 (0xb7716000) libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb75d1000) /lib/ld-linux.so.2 (0xb78c8000) libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb75b8000) libz.so.1 => /lib/libz.so.1 (0xb75a2000) |
파일은 대략 237K 이다.(보기보다 덩치가 큰녀석이다!)
$ ll /usr/bin/wget -rwxr-xr-x 1 root root 242516 2009-10-07 00:12 /usr/bin/wget |
busybox 에서는 cookie 관련 내용은 빠져있는 것으로 생각된다.
wget wget [-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document file] [--header 'header: value'] [-Y|--proxy on/off] [-P DIR] [-U|--user-agent agent] url Retrieve files via HTTP or FTP Options: -s Spider mode - only check file existence -c Continue retrieval of aborted transfer -q Quiet -P Set directory prefix to DIR -O Save to filename ('-' for stdout) -U Adjust 'User-Agent' field -Y Use proxy ('on' or 'off') [링크 : http://www.busybox.net/downloads/BusyBox.html] |
'Linux' 카테고리의 다른 글
readlink() 와 심볼릭 링크, 그리고 inode(아이노드) (0) | 2010.04.20 |
---|---|
pwd(getcwd), cd(chdir) (4) | 2010.04.19 |
/dev의 major minor에 대하여 (0) | 2010.04.08 |
gethostname() 과 gethostbyname() - difference of gethostname() and gethostbyname() (4) | 2010.04.05 |
chown 사용방법(사용자와 그룹 바꾸기) (0) | 2010.04.03 |