Here i am playing with python regex and here is my uname command output
$ uname -n
usa-ca-app01.example.com
Here is my python script
#!/usr/bin/python
import os
from time import strftime
import commands
status, output = commands.getstatusoutput("uname -n")
backupfile = output.split('.')[0] + "-backup-" + strftime("%m-%d-%y")
print backupfile
Script output is:
$ ./backup.py
usa-ca-app01-backup-02-12-13
My Question: I want output like app01-backup-02-12-13 so i wonder can we use multiple delimiter in split regex funtion to get required output or is there any good way to use elegant regex with python?

import re; re.split("[-.]",a)[-3], whereais your string – mlt Feb 12 at 21:36osmodule to get the nodename:os.uname()[1]– t-8ch Feb 12 at 21:36.rsplit('-', 1)[-1]– Martijn Pieters Feb 12 at 21:36