summary refs log tree commit diff
path: root/bin/1sh/tests/execution/path1.0
blob: 63ab97a19f1caf14ac42abf474719c4d14587f0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $FreeBSD: releng/12.1/bin/sh/tests/execution/path1.0 217206 2011-01-09 21:07:30Z jilles $
# Some builtins should not be overridable via PATH.

set -e
T=$(mktemp -d ${TMPDIR:-/tmp}/sh-test.XXXXXX)
trap 'rm -rf ${T}' 0
echo '#!/bin/sh
echo bad' >"$T/cd"
chmod 755 "$T/cd"
cd /bin
oPATH=$PATH
PATH=$T:$PATH:%builtin
cd /
PATH=$oPATH
[ "$(pwd)" = / ]
ese don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe