shuffle, as its name implies, shuffles the lines of its input (either

standard input, or the named files) into random order. It is in a
sense the very inverse of sort(1)).

WWW:    http://www.eskimo.com/~scs/src/#shuffle

PR:		ports/124100
Submitted by:	Greg Larkin <glarkin at sourcehosting.net>
This commit is contained in:
Martin Wilke 2008-06-20 17:57:09 +00:00
parent 916433b491
commit 07d5e942db
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=215377
4 changed files with 34 additions and 0 deletions

View file

@ -151,6 +151,7 @@
SUBDIR += ffe
SUBDIR += fi-aspell
SUBDIR += filepp
SUBDIR += fileshuffle
SUBDIR += fist
SUBDIR += fixrtf
SUBDIR += fldiff

View file

@ -0,0 +1,25 @@
# New ports collection makefile for: fileshuffle
# Date created: 2008-05-29
# Whom: Greg Larkin <glarkin@sourcehosting.net>
#
# $FreeBSD$
#
PORTNAME= fileshuffle
PORTVERSION= 0.1
CATEGORIES= textproc
MASTER_SITES= ftp://ftp.eskimo.com/u/s/scs/src/
DISTNAME= shuffle
MAINTAINER= glarkin@sourcehosting.net
COMMENT= A filter for shuffling lines in a text file into random order
MANPAGE= shuffle.1
PLIST_FILES= bin/${PORTNAME}
MAN1= ${PORTNAME}.1
do-install:
@${CP} ${WRKSRC}/shuffle ${PREFIX}/bin/${PORTNAME}
@${CP} ${WRKSRC}/${MANPAGE} ${PREFIX}/man/man1/${PORTNAME}.1
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (shuffle.tar.gz) = 22b271c58d0abd618260a06ff45786d2
SHA256 (shuffle.tar.gz) = f9eab7047cea96daccccfae6453dacec1696a5a25f76e1e059364239958c05ae
SIZE (shuffle.tar.gz) = 16780

View file

@ -0,0 +1,5 @@
shuffle, as its name implies, shuffles the lines of its input (either
standard input, or the named files) into random order. It is in a
sense the very inverse of sort(1)).
WWW: http://www.eskimo.com/~scs/src/#shuffle