9 lines
43 B
Bash
Executable file
9 lines
43 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
set -e
|
|
|
|
|
|
cd $1
|
|
shift
|
|
exec $@
|