mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-06 05:15:49 +01:00
8 lines
185 B
Python
Executable File
8 lines
185 B
Python
Executable File
a = "/home/newweb2.com/public_html/newweb2/"
|
|
DomainName ="newweb3.com"
|
|
abc = a.split("/")
|
|
wpexpath = abc[4]
|
|
newpath = '/home/%s/public_html/%s' % (DomainName, wpexpath)
|
|
|
|
print(newpath)
|