tests/test-check-shbang.t
author Pulkit Goyal <7895pulkit@gmail.com>
Mon, 27 Jun 2016 16:48:54 +0530
changeset 29433 33770d2b6cf9
parent 29219 3c9066ed557c
child 29515 bd18c2178fac
permissions -rw-r--r--
py3: conditionalize SocketServer import The SocketServer is renamed to socketserver in python 3

#require test-repo

  $ . "$TESTDIR/helpers-testrepo.sh"
  $ 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]