Don't rely upon /usr/games being in PATH, include it explicitly.
Fixes PR 9968 by yyrkoo@imrryr.org.
This commit is contained in:
parent
17023b3e8f
commit
6afb31ba03
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh -
|
||||
# $NetBSD: rot13.sh,v 1.2 1995/03/21 15:08:23 cgd Exp $
|
||||
# $NetBSD: rot13.sh,v 1.3 2000/04/24 13:21:26 hubertf Exp $
|
||||
#
|
||||
# Copyright (c) 1992, 1993
|
||||
# The Regents of the University of California. All rights reserved.
|
||||
|
@ -35,4 +35,6 @@
|
|||
# @(#)rot13.sh 8.1 (Berkeley) 5/31/93
|
||||
#
|
||||
|
||||
PATH="/usr/games:$PATH"; export PATH
|
||||
|
||||
caesar 13 $*
|
||||
|
|
Loading…
Reference in New Issue