Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/shell.py
blob: 0b00c95fabe0023ffc779fa4929252d0f1949bba (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/python

import os


def start(rcfile):
    bash_path = "/bin/bash"
    os.execlp(bash_path, bash_path, "--rcfile", rcfile)