Ubuntu Pastebin

Paste from lutostag at Tue, 25 Oct 2016 16:09:41 +0000

Download as text
1
2
3
4
5
6
7
8
lutostag@cia:~$ python
Python 2.7.12+ (default, Sep 17 2016, 12:08:02) 
[GCC 6.2.0 20160914] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import shlex
>>> shlex.split('curtin in-target -- sh -c sed -i /etc/beegfs/beegfs-client.conf -e"s/^sysMgmtdHost(.*)$/sysMgmtdHost = 10.99.11.124/"')
['curtin', 'in-target', '--', 'sh', '-c', 'sed', '-i', '/etc/beegfs/beegfs-client.conf', '-es/^sysMgmtdHost(.*)$/sysMgmtdHost = 10.99.11.124/']
>>> 
Download as text