X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-1.0 required=5.0 tests=AWL,BAYES_00,EXECUTABLE_URI,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org MIME-Version: 1.0 In-Reply-To: <49A1DF61.5000509@gmail.com> References: <49A1DF61 DOT 5000509 AT gmail DOT com> Date: Sun, 22 Feb 2009 21:52:50 -0500 Message-ID: Subject: Re: Setup - command line only From: Jared Silva To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Kevin and Nancy wrote: > A separate question might be, why can't setup update itself? Even, "click > here to download the new setup" would be a setup forward. That is easy to set up yourself. Below is my /bin/cygwin_setup: #! /bin/sh dir="/" url="http://www.cygwin.com/setup.exe" cygwin_setup="${dir}$(basename "${url}")" cd "${dir}" wget -N "${url}" chmod 755 -c "${cygwin_setup}" cygstart "${cygwin_setup}" --no-shortcuts ${@} -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/