Thread: [Assorted-commits] SF.net SVN: assorted: [532] shell-tools/trunk/README
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-29 06:58:38
|
Revision: 532 http://assorted.svn.sourceforge.net/assorted/?rev=532&view=rev Author: yangzhang Date: 2008-02-28 22:58:38 -0800 (Thu, 28 Feb 2008) Log Message: ----------- more updates to readme Modified Paths: -------------- shell-tools/trunk/README Modified: shell-tools/trunk/README =================================================================== --- shell-tools/trunk/README 2008-02-29 06:37:49 UTC (rev 531) +++ shell-tools/trunk/README 2008-02-29 06:58:38 UTC (rev 532) @@ -5,14 +5,15 @@ -------- Assorted Shell Tools is a collection of scripts and compiled programs that are -useful for shell scripting. These include: +useful for shell scripting. This package also contains a common include file +of various useful functions and variables. -This package also contains a common include file of various small functions and -variables (such as color escapes). +Note that many of these tools are shell scripts that were *not* written with +portability in mind. -It also contains some miscellaneous items, including `assorted.bash` for -managing websites. However, this will eventually be moved into the -`assorted-site` project. +This package also contains some miscellaneous items, including `assorted.bash` +for managing websites. However, these will eventually be moved into other +projects. These are intentionally not covered in the documentation. Requirements ------------ @@ -117,9 +118,20 @@ [build system]: http://assorted.sf.net/simple-build/ +Links +----- + +- [Advanced Bash Scripting](http://www.faqs.org/docs/abs/HTML/): huge guide to + the beautiful montrosity that is bash. + License ------- +Assorted Shell Tools is released under the [GNU GPL]. + +Contact +------- + Copyright 2008 [Yang Zhang]. All rights reserved. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-02-29 07:07:30
|
Revision: 535 http://assorted.svn.sourceforge.net/assorted/?rev=535&view=rev Author: yangzhang Date: 2008-02-28 23:07:34 -0800 (Thu, 28 Feb 2008) Log Message: ----------- more updates to readme Modified Paths: -------------- shell-tools/trunk/README Modified: shell-tools/trunk/README =================================================================== --- shell-tools/trunk/README 2008-02-29 07:05:10 UTC (rev 534) +++ shell-tools/trunk/README 2008-02-29 07:07:34 UTC (rev 535) @@ -73,6 +73,10 @@ `normalize` Given a list of numbers, return the numbers Some Haskell normalized to their sum. implementation +`randlines` Select random lines from a file. Python, + [Python + Commons] + `rmhead` Remove the first $n$ lines of a file. bash `rmtail` Remove the last $n$ lines of a file. (Same as bash @@ -96,7 +100,8 @@ bunch of interesting pipe redirection. -------------------------------------------------------------------------------- -[HSH]: http://software.complete.org/hsh +[HSH]: http://software.complete.org/hsh/ +[Python Commons]: http://assorted.sf.net/python-commons/ Usage ----- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-03-03 04:29:23
|
Revision: 574 http://assorted.svn.sourceforge.net/assorted/?rev=574&view=rev Author: yangzhang Date: 2008-03-02 20:29:28 -0800 (Sun, 02 Mar 2008) Log Message: ----------- tweaks Modified Paths: -------------- shell-tools/trunk/README Modified: shell-tools/trunk/README =================================================================== --- shell-tools/trunk/README 2008-03-03 04:25:59 UTC (rev 573) +++ shell-tools/trunk/README 2008-03-03 04:29:28 UTC (rev 574) @@ -105,14 +105,14 @@ For help on any particular tool, please see the tool's man page. -common.bash ------------ +Here are a few of the major components in `shell-tools`. +== common.bash == + Library of various general-purpose utilities that can come in handy for shell scripting. -SimpleSetup ------------ +== SimpleSetup == Framework for writing minimal installers that support installation by symlinks, which is particularly handy for development of scripts (scripts because it's This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-08 19:17:15
|
Revision: 731 http://assorted.svn.sourceforge.net/assorted/?rev=731&view=rev Author: yangzhang Date: 2008-05-08 12:17:00 -0700 (Thu, 08 May 2008) Log Message: ----------- added an overview of assorted.bash; fixed header issues Modified Paths: -------------- shell-tools/trunk/README Modified: shell-tools/trunk/README =================================================================== --- shell-tools/trunk/README 2008-05-08 19:16:37 UTC (rev 730) +++ shell-tools/trunk/README 2008-05-08 19:17:00 UTC (rev 731) @@ -110,12 +110,12 @@ Here are a few of the major components in `shell-tools`. -== common.bash == +### common.bash Library of various general-purpose utilities that can come in handy for shell scripting. -== SimpleSetup == +### SimpleSetup Framework for writing minimal installers that support installation by symlinks, which is particularly handy for development of scripts (scripts because it's @@ -123,6 +123,18 @@ [build system]: http://assorted.sf.net/simple-build/ +### assorted.bash + +This is a script for helping me publish, in the hopes of getting more into the +whole "release early and often" mantra. It takes care of the generation of the +project website and publishing this to assorted.sf.net, and it also packages up +and releases the software package. + +In both website generation and packaging, the process involves generation of a +final README from the source README. For releasing a package, the place to +upload the files is determined by the package type (most things default to +Google Code, but Python packages are pushed to PyPI, for instance). + Links ----- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |