Ask HN: What programming language do you use for system administration?
1–10 of 10 posts
Re: Ask HN: What programming language do you use for system administration?
#2And 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?
#3Cron jobs & similar are usually shell, various helper scripts are perl, and my deployment system is written in python.
Re: Ask HN: What programming language do you use for system administration?
#4Those are everywhere by default.
Re: Ask HN: What programming language do you use for system administration?
#5For Linux/Unix systems, definetely shell scripts (or perl for more complicates tasks). Those are everywhere by default.
Re: Ask HN: What programming language do you use for system administration?
#6Re: Ask HN: What programming language do you use for system administration?
#7In 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.
Re: Ask HN: What programming language do you use for system administration?
#8Re: Ask HN: What programming language do you use for system administration?
#9puppet for infrastructure configuration
bash, ruby and/or capistrano for deployments