Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!us.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.035 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.00; 'received:134': 0.05; 'string': 0.09; 'subject:skip:t 10': 0.09; 'argument.': 0.16; 'file"': 0.16; 'looked': 0.18; 'command': 0.22; 'header:User- Agent:1': 0.23; 'interface': 0.32; 'something': 0.35; 'but': 0.35; 'list.': 0.37; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'pardon': 0.84; 'partially': 0.84 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AqAEAP++nlOGuA9G/2dsb2JhbABahyXAIgGBMoUiBFEqDAIFFgsCCwMCAQIBPwwNCAKIPqFqjyOYYoUmF4EqkEqBTAEDmkOGY4x1g0I Date: Mon, 16 Jun 2014 11:56:49 +0200 From: Antoon Pardon User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Icedove/24.5.0 MIME-Version: 1.0 To: Pyton List Subject: line to argv transformation Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1402912714 news.xs4all.nl 2945 [2001:888:2000:d::a6]:38212 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:73307 I am looking for an interface that takes a string as argument. The string is to be treated as if it is a command line and transformed into an argv list. "ls file" -> ['ls', 'file'] "ls *.py" -> ['ls', 'file1.py', 'file2.py', ...] "ls '*.py'" -> ['ls', '*.py'] Does something like this already exist? I looked around but seem to find only things only partially do things like this, like shlex.split. -- Antoon Pardon