An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = [email protected] | |
| [core] | |
| editor = vim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| [sendemail] | |
| smtpencryption = tls | |
| smtpserver = smtp.gmail.com | |
| smtpuser = [email protected] |
| $ curl -O ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz | |
| $ tar -xzvf ncurses-5.9.tar.gz | |
| $ cd ./ncurses-5.9 | |
| $ ./configure --prefix=/usr/local \ | |
| --without-cxx --without-cxx-binding --without-ada --without-progs --without-curses-h \ | |
| --with-shared --without-debug \ | |
| --enable-widec --enable-const --enable-ext-colors --enable-sigwinch --enable-wgetch-events \ | |
| && make | |
| $ sudo make install |