9 lines
92 B
Bash
Executable File
9 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
if [[ "$1" == "bash" ]]; then
|
|
exec /usr/bin/bash
|
|
else
|
|
restic "$@"
|
|
fi
|