AI-MicroStructure
view release on metacpan or search on metacpan
changed that file, and provided that you do at least ONE of the following:
a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or an
equivalent medium, or placing the modifications on a major archive site
such as ftp.uu.net, or by allowing the Copyright Holder to include your
modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict with
standard executables, which must also be provided, and provide a separate
manual page for each non-standard executable that clearly documents how it
differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
4. You may distribute the programs of this Package in object code or executable
form, provided that you do at least ONE of the following:
a) distribute a Standard Version of the executables and library files,
bin/leo
bin/linksearch
bin/linksearch~
bin/localfiles
bin/micro
bin/micro-dict
bin/micro-dict~
bin/micro-leo
bin/micro-relation
bin/micro-relation-test
bin/micro-rename
bin/micro-sense
bin/micro-soundex
bin/micro-steemer
bin/micro-wiki
bin/micro-wnet
bin/micrownet
bin/national
bin/newssearch
bin/park.pm
bin/pdflinks
Makefile.PL view on Meta::CPAN
"bin/leo",
"bin/linksearch",
"bin/linksearch~",
"bin/localfiles",
"bin/micro",
"bin/micro-dict",
"bin/micro-dict~",
"bin/micro-leo",
"bin/micro-relation",
"bin/micro-relation-test",
"bin/micro-rename",
"bin/micro-sense",
"bin/micro-soundex",
"bin/micro-steemer",
"bin/micro-wiki",
"bin/micro-wnet",
"bin/micrownet",
"bin/national",
"bin/newssearch",
"bin/park.pm",
"bin/pdflinks",
bin/micro-rename view on Meta::CPAN
#!/bin/bash
IFS_BAK=$IFS;
IFS=$'\n';
# blank-rename.sh
#
# Substitutes underscores for blanks in all the filenames in a directory.
filename=$1
ONE=1 # For getting singular/plural right (see below).
number=0 # Keeps track of how many files actually renamed.
FOUND=0 # Successful return value.
fname=$1 # Yes, this filename needs work.
n=`echo $fname | sed -e "s/ /_/g" | sed -e "s/'//g" | sed -e "s/&/and/g" | tr A-Z a-z | sed -e "s/)/_/g" | sed -e "s/(/_/g" | sed -e "s/\[//g" | sed -e "s/\]//g" | sed -e "s/\,//g" | sed -e "s/\;//g"` #
# | sed -e "s/[/_/g" | sed -e "s/]//g" | sed -e "s/)//g" | sed -e "s/(//g"`
mv "$1" "$n" > /dev/null;
( run in 1.662 second using v1.01-cache-2.11-cpan-f29a10751f0 )