Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: one command on backslash and space for review Date: Mon, 11 Jul 2016 04:45:38 +1000 Lines: 11 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de kqgRbrparbhiQ1cHGtSmRgMYwpZiY7cXHWWbq4fa0HTg== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.007 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'correct.': 0.07; 'cc:addr :python-list': 0.09; 'subject:command': 0.09; 'question.': 0.13; '2016': 0.16; '4:35': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'no"': 0.16; 'pythonic': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'wrote:': 0.16; 'shell': 0.18; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'am,': 0.23; 'header:In-Reply-To:1': 0.24; 'mon,': 0.24; 'command': 0.26; 'message-id:@mail.gmail.com': 0.27; 'executing': 0.27; "skip:' 10": 0.28; 'looks': 0.29; 'sleep': 0.29; 'guess': 0.31; 'run': 0.33; 'received:google.com': 0.35; 'something': 0.35; 'but': 0.36; 'there': 0.36; 'possible.': 0.36; 'subject:: ': 0.37; 'jul': 0.72; 'chrisa': 0.84; 'subject:review': 0.84; 'subject:space': 0.84; 'to:none': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:cc; bh=lerOe+VG3/KwA8EfxYOSLKHlU6EB7xtGSJ8w0b7rIPg=; b=KFMd9it7lVJiRNS9Ki4q8gFS0wq5t3pyW7wiEh2Xxzklz9qOQOknEsaKZon3cgP9LX 3G+HcX0fVY1rsEJ0RCK+R5FXSAROzn6GsY1yik6RnnFDAT/sKSB0xnXXZA/1oTmmFnZq qrgwqPL281/dtJN2cJvrrsmsG4RYXIcbpCFPE0KfqKhbBE27NwLShS50bU+Nd4ZRkOyh 7KvU4w7lvsDgC4PA/i2OtrjTnmGwL2di63OeXMD6Q26XJIkbkGAa5qp9EbW6n9miDzCo h+ga+/72OH+Sj4rTKVeBuHT3iOSPjJgEBbAKgQVaVF0ieKiL8mMaP26ekFWLVqOg4D5z xg2Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:cc; bh=lerOe+VG3/KwA8EfxYOSLKHlU6EB7xtGSJ8w0b7rIPg=; b=cgHToP6EbqmBtGLABrnuAoItrbfiaipUfCYLImSNISoa1FSLxOTBlnJQ8NcoXSjB6O BkOjLCMDQ018EOTlhZLoLfQH1h9aLlp5zjiLM/wrzZaqi3HJw7FhVozEOY2TcpVCXoRq J51yhLVmtABTd/CesLAwIWYDS4m0lpEU05ITKNvzxrvDebqYLLobuDPDfSHdqaGM4FfM t9s62L5QWLf+hIhSHkbIHnODLbsDxKoSwB8dldSB9UGh0w5lQsS3/ok3/YUddX8t9UMi EFp11eDzOQTCo/dr08ziBy43Zjvi8gPwlYD4AYpCBZvV0Vc1yIE/Wf3Iod6t7WKi+mT9 eXoQ== X-Gm-Message-State: ALyK8tI3gf3BkrqvWK9gu8qaXxmJ/GnhiTZXD6qtRFC0ew+qIhDDtfvS5XDYGv//qFgRWbF+2qbxdKONlgO0gA== X-Received: by 10.28.213.145 with SMTP id m139mr13258190wmg.81.1468176338770; Sun, 10 Jul 2016 11:45:38 -0700 (PDT) In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: X-Mailman-Original-References: Xref: csiph.com comp.lang.python:111257 On Mon, Jul 11, 2016 at 4:35 AM, Ganesh Pal wrote: > 'run_parallel -za1 -s 'daemon -cf xyz; sleep 1' > > We have a sleep 1 that's run run as part of abovry shell command . It > looks ok but is there a way to use something alternative to sleep was my > question. I guess the answer is " no" , because we are executing shell > sleep command I think something pythonic like time.sleep is not possible. That would be correct. ChrisA