Add rl, a command-line tool that reads lines from an input file or stdin,

randomizes the lines and outputs a specified number of lines. It does
this with only a single pass over the input while trying to use as little
memory as possible.

PR:		ports/68182
Submitted by:	David Sze <dsze@alumni.uwaterloo.ca>
This commit is contained in:
Pav Lucistnik 2004-06-22 20:19:51 +00:00
parent bc7b7b24e3
commit 7b16658540
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112001
4 changed files with 30 additions and 0 deletions

View File

@ -458,6 +458,7 @@
SUBDIR += redland
SUBDIR += replaceit
SUBDIR += resume
SUBDIR += rl
SUBDIR += rman
SUBDIR += ro-aspell
SUBDIR += roap

21
textproc/rl/Makefile Normal file
View File

@ -0,0 +1,21 @@
# New ports collection makefile for: rl
# Date created: 21 June 2004
# Whom: David Sze <dsze@alumni.uwaterloo.ca>
#
# $FreeBSD$
#
PORTNAME= rl
PORTVERSION= 0.2.2
CATEGORIES= textproc
MASTER_SITES= http://tiefighter.et.tudelft.nl/~arthur/rl/
MAINTAINER= ports@FreeBSD.org
COMMENT= Randomizes lines from a specified input file
GNU_CONFIGURE= yes
MAN1= rl.1
PLIST_FILES= bin/rl
.include <bsd.port.mk>

2
textproc/rl/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (rl-0.2.2.tar.gz) = 4be20e6633026d3f1fc3a44f0a856ad0
SIZE (rl-0.2.2.tar.gz) = 108678

6
textproc/rl/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
rl is a command-line tool that reads lines from an input file or stdin,
randomizes the lines and outputs a specified number of lines. It does
this with only a single pass over the input while trying to use as little
memory as possible.
WWW: http://tiefighter.et.tudelft.nl/~arthur/rl/