tests/test-check-shbang.t
author Matt Mackall <mpm@selenic.com>
Sun, 01 May 2016 14:36:12 -0500
branchstable
changeset 29053 61463b8fcef8
parent 28879 8c1759a2bdf4
child 29219 3c9066ed557c
permissions -rw-r--r--
Added signature for changeset a56296f55a5e

#require test-repo

  $ cd "`dirname "$TESTDIR"`"

look for python scripts that do not use /usr/bin/env

  $ hg files 'set:grep(r"^#!.*?python") and not grep(r"^#!/usr/bin/env python")'
  [1]

look for shell scripts that do not use /bin/sh

  $ hg files 'set:grep(r"^#!.*/bin/sh") and not grep(r"^#!/bin/sh")'
  [1]