6 lines
79 B
Bash
6 lines
79 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
cd ~
|
|
echo "Welcome to P4-in-a-Bottle!"
|
|
exec /bin/bash "$@"
|