8 lines
130 B
Bash
Executable File
8 lines
130 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Start a dynamically-configured archiver
|
|
#
|
|
|
|
here=$(dirname "$0")
|
|
exec "$here"/archiver.sh --label x$$ "$@"
|