12 lines
188 B
Python
Executable file
12 lines
188 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from slugify import slugify
|
|
import sys
|
|
|
|
def main(args):
|
|
print slugify(' '.join(args))
|
|
|
|
return 0
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv[1:]))
|