mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -05:00
command is handled as a shell function. This avoids the following
peculiar behaviour when /usr/bin is on a case-insensitive filesystem:
# READ foo
(... long pause, depending upon the amount of swap space available ...)
sh: Resource temporarily unavailable.
Reported by: I can't remember; someone on IRC.
MFC after: 1 week
4 lines
86 B
Bash
4 lines
86 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
# This file is in the public domain.
|
|
builtin ${0##*/} ${1+"$@"}
|