From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12510 invoked by alias); 3 Feb 2015 11:30:01 -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: 19790 Received: (qmail 16349 invoked from network); 3 Feb 2015 11:29:58 -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=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=donmez.ws; s=www; h=mime-version:from:date:message-id:subject:to:content-type; bh=Vdcmo93xXDjqk0wg973uwXLAg5GUubcThSzLQ2BsogQ=; b=DLYIJA8xpFPgozgB17PfDu5qKxqsmJwuEfwsBz9ZONQkRCDOe3NCHFQx4guAK7GpAP hQW/wXjXo8+Y9kYgUyc9e6T1ALe4NpxqNpGnRi/7MGZ2z7p1RPFyuQgTFyRyg1A5VpOJ YxAyMd2HcsQkEVI9WYDTswtNy85zRLxKzjznI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type; bh=Vdcmo93xXDjqk0wg973uwXLAg5GUubcThSzLQ2BsogQ=; b=mPyP1x1HjQhhc20fc7fGRcaSqHnkjD8XivSZQeuPmyNHAr8gdfQRd3EBBJjQWuT5w6 6l4hRjIxyOYUHcQ1fjDZuCcFFoETdJ1dpOtGdWKroffqIYyFnISl5s8wNFkPl7zRogPa 4fc84ZbwWGwDDPqnN+It/464Qx/IB0bWbBeuti3Qa0uaH4qFc6bzfLSMmLq8NpbZcOix uPm68RA8ohQdBhl7gYXBRke1kFgL/OoZFdYv+ifVoDAxBnIs1vl8SGu7BrD8xJg85cp2 jUb6yJ6l5xE3rMV/Gb2+rznV+cY1PkQdj88f8R3d0wwAxeLa4Tm9sx+KBVY5eiJsqrOq 0R4g== X-Gm-Message-State: ALoCoQnDdi0z2vGqA1eR2SoAMKbi9VWefCWcqAkDkebrfPcIgD0Vi2inwRMVaKniH5Eyxw7HEFNd X-Received: by 10.112.41.234 with SMTP id i10mr24020229lbl.25.1422962994381; Tue, 03 Feb 2015 03:29:54 -0800 (PST) MIME-Version: 1.0 From: =?UTF-8?B?xLBzbWFpbCBEw7ZubWV6?= Date: Tue, 3 Feb 2015 13:29:34 +0200 Message-ID: Subject: Hiding command from history To: Zsh Users Content-Type: text/plain; charset=UTF-8 Hi, I know I can set HIST_IGNORE_SPACE and any command starting with space will not be logged in history. But with that I have many aliases like alias ls=" ls" alias mv=" mv" etc. So, I wonder if there is an easier way to blacklist multiple commands from history without creating an alias for each of them? Thanks!