tests/test-check-shbang.t
author Matt Mackall <mpm@selenic.com>
Fri, 01 Jul 2016 15:12:33 -0500
branchstable
changeset 29454 ddbff1435e7b
parent 28879 8c1759a2bdf4
child 29219 3c9066ed557c
permissions -rw-r--r--
Added signature for changeset 26a5d605b868

#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]