From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11567 invoked by alias); 1 Sep 2012 10:28:51 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 17218 Received: (qmail 29887 invoked from network); 1 Sep 2012 10:28:48 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.6 required=5.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED,RCVD_IN_DNSWL_LOW, T_DKIM_INVALID,T_TO_NO_BRKTS_FREEMAIL autolearn=no version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.220.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=7Ce4cAbvR3TwbsgQcx9QG443pPacbodPhBIwjT0ov1I=; b=iVDh/6CZiQrpN2s77gYDCPVBayJAkfgt6jQuY+Sa4NrZoefuxxdGxGUWiRC73CeXlA qfT5HhchsoCPYot5JmJ2PurlHjBbAXs+f+gqWTj2L4o5j3trELfabeoFtVKMiynOvF92 L9QJ2N1lFcVcl0CrLi0bzmUghH19nrySj/1QItN/zGtXLlo4ZskW7BDeGIKbIxzUmHY/ DwsFcv+PVfGDIeJ228k9K8DQ6WJEpyI4iihBH0oSb0MAv0ckr5LobDyHXY9ghzYAjaRm jkkRj3LG55RqOZdBehyycaSI/nz3D6hAUfcPX8p8IcFuY6fpgTQZkd2QY8FPJL/2yJ9+ uCLg== MIME-Version: 1.0 Date: Sat, 1 Sep 2012 20:20:52 +1000 Message-ID: Subject: ZSH on ubuntu - bash completions From: Sayth Renshaw To: zsh-users@zsh.org Content-Type: text/plain; charset=ISO-8859-1 For installs that use Bash such as Pythonbrew, Perlbrew and Pythonz how can I change to have them use ZSH instead? With Pythonbrew I have followed the standard install of curl and then adding the line to ~/.bashrc but it will return an unknown command in a new zsh terminal. [[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc - from the pythonbrew readme https://github.com/utahta/pythonbrew#readme I treid making the initial command curl -kL xrl.us/pythonbrewinstall | zsh But that doesn't work.Also put the command into zshrc [[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc but that doesn't work either. Any ideas? Thanks Sayth