Live data from Hacker News

Ask HN: What programming language do you use for system administration?

news.ycombinator.com

1–10 of 10 posts

Re: Ask HN: What programming language do you use for system administration?

#2
For my sysadmin work involves 1. Backups 2. Installation 3. Performance monitoring 4. Configuration management

And the only thing I use for this is Shell scripts. In fact I am not sure if there is any other option. But then I am not a system administrator, its my part time duty.

Re: Ask HN: What programming language do you use for system administration?

#5
post #4

For Linux/Unix systems, definetely shell scripts (or perl for more complicates tasks). Those are everywhere by default.

I prefer ruby for scripting but if you are working on multiple *nix systems then you really do need to stick with "the basics".

Re: Ask HN: What programming language do you use for system administration?

#7
Only Python, these days.

In very rare cases (when it's simply a sequential list of commands) I still use shell scripts, but I try to replace them with Python programs as soon as any logic, text/data processing or sane error handling is needed.