Tag Archive for 'shell script'

Random Password script

I just added another shell script to the growing library of open source code available on xentek.net. This entry is nothing special, but may prove useful to you. The script can generate a string, between 3 and 32 characters long, that you can use when setting new passwords.

The passwords won’t be the most secure in the world (doesn’t include any Uppercase Letters) but does bookend a random md5 string with some special characters to increase the complexity. You can pass in a number between 1 – 32 to control how long of a password it generates for you.

Download the random password script it from the code library.

Automate Setting Up New SVN Repositories

If you follow best practices for Subversion, then you create the standard repository layout, with trunk, tags, and branches directories. In fact these are usually my first three commits of any new repository. I’ve completed these steps so many times in the last few months, that I can practically type it in my sleep. Tired of repeating myself, I started digging into shell scripting to automate this task and released the fruits of my labor here: SVN: New Repos.

Continue reading ‘Automate Setting Up New SVN Repositories’