mirror of
https://github.com/apache/poi.git
synced 2025-02-08 19:14:42 +00:00
13 lines
159 B
Plaintext
13 lines
159 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
# Copyright (c) 2001 The Apache Software Foundation. All rights
|
||
|
# reserved.
|
||
|
|
||
|
# Args: DIR command
|
||
|
cd "$1"
|
||
|
CMD="$2"
|
||
|
shift
|
||
|
shift
|
||
|
|
||
|
exec $CMD "$@"
|