mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
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:
parent
bc7b7b24e3
commit
7b16658540
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112001
@ -458,6 +458,7 @@
|
|||||||
SUBDIR += redland
|
SUBDIR += redland
|
||||||
SUBDIR += replaceit
|
SUBDIR += replaceit
|
||||||
SUBDIR += resume
|
SUBDIR += resume
|
||||||
|
SUBDIR += rl
|
||||||
SUBDIR += rman
|
SUBDIR += rman
|
||||||
SUBDIR += ro-aspell
|
SUBDIR += ro-aspell
|
||||||
SUBDIR += roap
|
SUBDIR += roap
|
||||||
|
21
textproc/rl/Makefile
Normal file
21
textproc/rl/Makefile
Normal 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
2
textproc/rl/distinfo
Normal 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
6
textproc/rl/pkg-descr
Normal 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/
|
Loading…
Reference in New Issue
Block a user