Ports Search

Results 291300 of 549 for /misc/.(0.004 seconds)
misc/metromap-0.1.4 (Score: 0.121850066)
Simple application for finding paths in different subways maps
Metromap is a simple pygtk+2 program for finding paths in metro (subway) maps. Maps for Moscow, St. Petersburg, Kiev, London, and Berlin are included.
misc/localedata-5.4 (Score: 0.121850066)
Legacy locale data for FreeBSD 6+
This package provides compatibility locale data for FreeBSD 6.x to run 4.x/5.x binaries. When you have a trouble with locale at running a legacy binary, you should guide them to find legacy locale data with setting PATH_LOCALE environment variable. env PATH_LOCALE=/usr/local/share/compat/locale command
misc/mime-support-3.59 (Score: 0.121850066)
MIME Media Types list
MIME Media Types list for use in various programs.
misc/loop-1.0 (Score: 0.121850066)
Prints to stdout a series of numbers from `start' to `end'
Prints to stdout a series of numbers from `start' to `end', with optional increment and zero-padded field width. Hex (-x) or octal (-o) output formats are available. Negative numbers are allowed, and a negative `increment' does the expected thing.
misc/kde-thumbnailer-fb2-0.2 (Score: 0.121850066)
KDE thumbnail generator for fb2 files
KDE thumbnail generator for the FictionBook (fb2) file format.
misc/mmv-1.01b.15 (Score: 0.121850066)
Move/Copy/Append/Link multiple files
mmv is a program to move/copy/append/link multiple files according to a set of wildcard patterns. This multiple action is performed safely, i.e. without any unexpected deletion of files due to collisions of target names with existing filenames or with other target names.
misc/mtail-1.2.0 (Score: 0.121850066)
Small tail workalike that performs output coloring
mtail is a small tail workalike that performs output coloring using ansi escape sequences (although the sequences are overridable, so you could cause it to output something else, e.g. html font tags, if you really wanted to). mtail is written in python, is fairly small, and should be relatively platform-independent. It has a config file that can contain an arbitrary number of entries, each of which has a series of regular expressions to indicate which files to color according to which entry. for each entry, the config file specifies a coloring scheme using regular expressions and, optionally, filters to apply to each line before coloring (for example, to strip out extra info, etc.). the config file also may override the predefined colors and the escape sequences (or whatever) actually used to perform the coloring.
misc/najitool-0.8.4 (Score: 0.121850066)
Generates, converts, and filters files
najitool generates and/or makes altered copies of files in the patterns you specify or shows to the screen. najitool is being developed in the ANSI C standard so it should work and compile on any system that supports ANSI C, which should be every system.
misc/i18n-man-1.1 (Score: 0.121850066)
Browse I18N capable UNIX manual pages with Mule, Emacs, and XEmacs
This code provides a function, `i18n-man', with which you can browse UNIX manual pages. Formatting is done in background so that you can continue to use your Emacs while processing is going on. The mode also supports hypertext-like following of manual page SEE ALSO references, and other features. See below or do `?' in a manual page buffer for details. For working with Japanese, English and German, put your dot.emacs file following: (autoload 'jman "i18n-man-ja" nil t) (autoload 'eman "i18n-man-en" nil t) (autoload 'dman "i18n-man-de" nil t) then M-x jman to get a Japanese manual page thru jman(1) and put it in a buffer. M-x eman to get a English manual page thru man(1) and put it in a buffer. M-x dman to get a German manual page thru man(1) and put it in a buffer. If you want byte-compile with your favorite "Emacs", use "byte-comile" script as: # cd /usr/local/share/emacs/site-lisp # /usr/local/share/doc/prom-mew/byte-compile xemacs-mule i18n-man-ja i18n-man-ja.el i18n-man.el For usage of byte_compile scripts, run byte_compile with -h option.
misc/newer-1.0 (Score: 0.121850066)
Implementation of AT&T Research UNIX V8 newer(1)
> There doesn't appear to be any decent way to compare the last modified > times of files from the shell... Before everybody starts inventing their own names for this, it should be noted that V8 already has a program for this, newer(1). It takes two filenames as arguments, and exits with status 0 if and only if either (a) the first exists and the second does not, or (b) both exist and the first's modification time is at least as recent as the second's. Other- wise it exits with non-zero status. (The preceding two sentences are essentially the whole of the manual page for it.) Relatively few people have V8, but in the absence of any other precedent for what this facility should like look, it seems reasonable to follow V8's lead: newer file1 file2 exit with 0 status if file1 exists and file2 does not, or if file1's last modified time is at least as recent as file2's.