8

我很难弄清楚如何从主机名中删除最后一个句点......

电流输出:

  • 域名.com。
  • suddomain.com。
  • 域名.com。
  • subdomain.subdomain.com。
  • 子域.com。

所需的输出:

  • 域名.com
  • subdomain.com
  • 域名.com
  • subdomain.subdomain.com

尝试1:

print string[:-1]  #it works on some lines but not all

尝试2:

 str = string.split('.')
 subd = '.'.join(str[0:-1])
 print subd    # does not work at all 

代码:

global DOMAINS

if len(DOMAINS) >= 1:
  for domain in DOMAINS:
    cmd = "dig @adonis.dc1.domain.com axfr %s |grep NS |awk '{print $1}'|sort -u |grep -v '^%s.$'" % (domain,domain)
    p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,   shell=True)
    string = p.stdout.read()
    string = string.strip().replace(' ','')
    if string:
      print string
4

2 回答 2

21

你这样做:

hostname.rstrip('.')

其中 hostname 是包含域名的字符串。

>>> 'domain.com'.rstrip('.')
'domain.com'
>>> 'domain.com.'.rstrip('.')
'domain.com'
于 2013-02-18T23:20:15.157 回答
-3

我放弃了,只是用 sed 代替....

cmd = "dig @adonis.dc1.domain.com axfr %s |grep NS |awk '{print $1}' |sort -u |grep -v '^%s.$'|sed -e 's/.$//'"
于 2013-02-18T23:31:53.053 回答