mirror of
https://github.com/rancher/os-kernel.git
synced 2025-06-23 04:07:04 +00:00
12 lines
137 B
Plaintext
12 lines
137 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
trap "rm -f $HOME/.bash_history" exit
|
||
|
|
||
|
mkdir -p bin
|
||
|
if [ -e ./scripts/$1 ]; then
|
||
|
./scripts/"$@"
|
||
|
else
|
||
|
"$@"
|
||
|
fi
|