blogged find better blogs
HomeTechnologyEntertainmentSportsPoliticsBusinessHumorWorld NewsLifestyleDirectoryMore Topics
Blog Detail
Subjectively

Most of this blog is related to software development and team management issues. The rest is my own blend of what I care about that day.
Subjectively Blog  
Related Blogs
previous blog next blog
8.0
great
based on editor's review


recent postsrss feed

Simple bash password generator

Nov 24, 2009
This is just a quick way to create arbitrary passwords that may contain letters, numbers, and symbols. It takes an optional length...

launchd script for OS/X for bash daemon

Nov 19, 2009
The name of this file is /Library/LaunchDaemons/com.{domain_name}.{service_name}.plist Replace any text in curly braces {} with some appropriate information for your script. When you are finished creating the file, load it with:   launchctl load -w...

OS/X daemon script template

Nov 9, 2009
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 #!/bin/bash   # put these lines...

bash shell script to manage pid file creation/deletion

Oct 30, 2009
Problem: You want your script to execute without overlapping another execution. Solution: Make a flag file so you know that your script is already executing. Extended problem: What if your script dies and leaves the flag file behind? Extended...

bash shell script to use getopts with gnu style long positional parameters

Oct 29, 2009
Problem: You want to support –really-long-option-names in your bash script and getopts won’t do it. More problems: You don’t want to use getopt because you want cross platform support or your platform isn’t supported. More problems than that: I can’t...


Comments & Reviews:
Be the First to Review this Blog!