Code: Alles auswählen
#!/usr/bin/python
import os
mypath = os.getcwd()
tag = str(input("Tag eingeben: "))
mypath = mypath + '/' + tag
myvars = {'mypath':mypath}
os.system('mkdir %(mypath)s' % myvars)
print("pfad:", mypath) #Zur kontrolle für mich
print("eingegebener tag:", tag)
os.system('cp testfile %(mypath)s' % myvars)
os.system('/bin/bash')
#Ab hier wirds nicht mehr ausgeführt
print("testfile in den erstellten ordner kopiert:")
import os
os.system('cd /home/faruk/test/ & mkdir backuppp')
os.system('/bin/bash')
print("ordner erstellt:")
ich würde gerne noch einige befehle dranhängen nachdem das datum abgefragt und der ordner erstellt wurde ...
achso und wie kriege ich es hin vor dem import os als erstes oben noch etwaige andere os.system befehle auszuführen ?
am einrücken mit den tabs kanns wohl nicht liegen ?
danke
lg