- 授权协议: 未知
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://github.com/dccmx/fql
- 软件文档: https://github.com/dccmx/fql
软件介绍
这个工具可以让你像操作数据库一样操作文件。
fql:
fql is a tool that use SQL like query to manipulate files.
example:
fql "select time, size, name from ../"
fql "select * where name = fql.cc"
fql "select * where not name = fql.cc"
fql "select time, size, name from . where size > 2.5k and size < 3k order by size desc"
available columns to select:
name
path
perms
size
inode
uid
gid
uname
gname
atime
time : same as atime
mtime
ctime
supported syntax:
select [attrs]
from [folder]
where [expression]
order by [attrs]
limit [[start,] limit]
Make (libreadline is optional):
./configure && make
Install:
copy ./fql to where you like such as /usr/local/bin/.
or make install
计算机程序设计艺术(第3卷)
Donald E.Knuth / 苏运霖 / 国防工业出版社 / 2002-9 / 98.00元
第3卷的头一次修订对经典计算机排序和查找技术做了最全面的考察。它扩充了第1卷对数据结构的处理,以将大小数据库和内外存储器一并考虑;遴选了精心核验的计算机方法,并对其效率做了定量分析。第3卷的突出特点是对“最优排序”一节的修订和对排列论与通用散列法的讨论。一起来看看 《计算机程序设计艺术(第3卷)》 这本书的介绍吧!
