<?xml version="1.0"?>
<?xml-stylesheet href="/App_Themes/Rss/Rss.xsl" type="text/xsl"?>
<rss version="2.0" xmlns:snippetcenter="http://www.snippetcenter.org/">
<channel>
	<title>snippetcenter.org Snippet Feed - UNIX Admin</title>
	<link>http://www.snippetcenter.org/</link>
	<description>The newest Snippets in  UNIX Admin</description>
	<language>en-us</language>
	<copyright>snippetcenter.org</copyright>
	<generator>Advice: This is a RSS Document for reading in your RSS-Reader. Click here for mor informations.</generator>

	<image>
		<url>http://www.snippetcenter.org/Library/Media/Public/button_88x31.png</url>
		<title>snippetcenter.org</title>
		<link>http://www.snippetcenter.org/</link>
		<width>88</width>
		<height>31</height>
	</image>
	
	<item>
     <title><![CDATA[cpdate and others]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/cpdate-and-others-s1882.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[script that can copy, move files and append the current date in a variety of formats.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/cpdate-and-others-s1882.aspx]]></link>
</item>

<item>
     <title><![CDATA[InsTar]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/instar-s1879.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[InsTar was written to simplify the process of installing a package from a source tarball. To install from a tarball is normally a five step process:$ tar -xzvf foobar.tar.gz$ cd foobar$ ./configure$ ./make$ ./make installInsTar reduces this to one step:$ instar foobarThe usual way to run InsTar is to run it with one parameter - the name of the file to install. Note that the extension (.tar.gz, .tar.bz2, etc) should not be included. If there is an error, InsTar will exit with a short explanation of the problem. InsTar should be run as root, otherwise it will fail when it gets to the make install step.Other parameters are:$ instar --helpor$ instar -hwill display a short help$ instar --installwill copy instar to /bin/instar and make it executable by everyone.$ instar --removewill delete the file /bin/instar$ instar --versionwill display some version information and exit.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/instar-s1879.aspx]]></link>
</item>

<item>
     <title><![CDATA[hup_inetd]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/hup_inetd-s1875.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[A simple one-liner I came up with for sending the 'kill-HUP' signal to inetd after making changes. No need to look up the PID for inetd, this does it for you, and let's you know when it's done. Tested under GNU/Linux using the bash shell.Use it as a function for your profile or bashrc script for handy reference. Must have root privelege for it to work.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/hup_inetd-s1875.aspx]]></link>
</item>

<item>
     <title><![CDATA[passgen]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/passgen-s1874.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[passgen is a utility for generating a list of 15 random passwords. The defaultpasswords generated are 8 characters in length, using normal alphanumericcharacters. However, the length and the strength of the passwords can bemodified with command line options. Read the 'print_help()' function for moredetails.The code for this version was greatly optimized for parsing the command lineoptions, reducing the size by more than one-third, and the 'print_help()'function was also enhanced.This script also tests for the presence of /dev/urandon. If found, it willuse that device for creating the passwords. Otherwise it will use /dev/random.Loosely based on the ptool script found at SourceForge.net by Anthony Briggs.&lt;http://sourceforge.net/snippet/detail.php?type=snippet&amp;id=100544&gt;]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/passgen-s1874.aspx]]></link>
</item>

<item>
     <title><![CDATA[mozer]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/mozer-s1865.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[Display any url (internet or local file system) specified on thecommand line in mozilla or netscapeEach invocation of this script creates a new tab in the browser(tabbed browsing), rather than a new instance.If the browser is not running yet, it will be started.Examples:  mozer jedit.org  mozer http://skiclub-mitwitz.de/becki  mozer ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/slackware  mozer /etc/resolv.conf]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/mozer-s1865.aspx]]></link>
</item>

<item>
     <title><![CDATA[cpdate]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/cpdate-s1859.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[A slightly different and independently created cpdate the one that exists here already. My version does not fo the subdir stuff, but checks if the file exists to avoid overwriting it, and automatically goes to the &quot;dateTtime&quot; version in that case.The &quot;note&quot; case will also add a date suffix in the same manner.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/cpdate-s1859.aspx]]></link>
</item>

<item>
     <title><![CDATA[IDH - Interactive Directory History for Bash &gt;=2.04]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/idh-interactive-directory-history-for-bash-gt204-s1840.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[This is a collection of Bash functions and environment variables which implement a simple way of interacting with Bash's directory history.Here's a screenshot of my prompt (used below to illustrate features):   &lt;6&gt; ~   &lt;5&gt; ~/tt.sandbox/tt   &lt;4&gt; ~/newMM   &lt;3&gt; /cvsroot/CVSROOT   &lt;2&gt; ~/tt.sandbox/CVSROOT   &lt;1&gt; ~/tt.sandbox   ~/newMM/cnlp/   sarowe@katzer[1049]$ The above is nothing special, of course: it's just a reverse listing of the DIRSTACK[] array; the PROMPT_COMMAND env. var. is set to 'rds', which is the name of the function which prints this.  The user can toggle this display by invoking the 'tddh' (Toggle DISPLAY_DIR_HISTORY) function.The actual features are (examples refer to the above screenshot):   - Quick return to an entry in the history with new 'back' command ('back 3' will change the current directory from '~/newMM/cnlp' to '/cvsroot/CVSROOT').  - Unique history maintenance, including tilda-expansion.  - Removal of unwanted entries in the history with new 'drop' command ('drop 1-4 6' will leave only '~/tt.sandbox/tt' in the history).  - Automatic removal of non-existent directories from history (after directory deletion, etc.).Assumptions:  - You'll visit less than 100 directories in a given session.This stuff was inspired by the directory history popup windows available under the 4DOS shell.I enable all this by sticking these functions and env. var. settings in my .bashrc.Enjoy,Steve Rowe]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/idh-interactive-directory-history-for-bash-gt204-s1840.aspx]]></link>
</item>

<item>
     <title><![CDATA[SASrun]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/sasrun-s1826.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[This script will run a SAS job and re-direct both the SAS Log and SAS Output to unique date-time stamped filenames.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/sasrun-s1826.aspx]]></link>
</item>

<item>
     <title><![CDATA[moduser2]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/moduser2-s1823.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[Shell script for manipulating (add, delete, change password, lock, unlock) with user's accounts in your two bases simultaneously - Samba's smbpasswd and *nix passwd.Tested on Debian GNU/Linux 3.0 (woody).]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/moduser2-s1823.aspx]]></link>
</item>

<item>
     <title><![CDATA[tksqlite]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/en/tksqlite-s1819.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[Minimalistic GUI for creating and handling SQLite databases]]></description>
     <link><![CDATA[http://www.snippetcenter.org/en/tksqlite-s1819.aspx]]></link>
</item>



</channel>
</rss>
