摘要:
从源代码安装过软件的朋友一定对 ./configure && make && make install 安装三步曲非常熟悉了。然而究竟这个过程中的每一步幕后都发生了些什么呢?本文将带领你一探究竟。深入理解这个过程将有助于你在LFS的基础上玩出自己的花样来。不过需要说明的是本文对 Makefile 和 make 的讲解是相当近视和粗浅的,但是对于理解安装过程来说足够了。 阅读全文
摘要:
最近需要用到sqlite,略略找了下资料,找到一位大神把sqlite 的man文件贴了出来,转载一下,备用
原文:http://linux.die.net/man/1/sqlite3
Name
sqlite3 - A command line interface for SQLite version 3
Synopsis
sqlite3 [options] [databasefile] [SQL]
Summary
sqlite3 is a terminal-based front-end to the SQLite library that can evaluate queries interactively and display the results in multiple formats. sqlite3can also be used within shell scripts and other applications to provide batch processing features. 阅读全文