blob: 32b83335fe53242669e8563be9d03283e9582ffc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2001
# Mutable Realms, Inc.
# Huntsville, AL, USA
#
# All Rights Reserved
#
# **********************************************************************
import fileinput
previous = ""
for line in fileinput.input():
line = line.strip()
if(previous):
line = previous + " " + line
if(line[-1] == "\\"):
previous = line[:-2]
continue
else:
previous = ""
for s in line.split():
if(s[0] != "/"):
print s,
print
|