mirror of
https://github.com/rancher/os-kernel.git
synced 2025-05-01 03:43:21 +00:00
12 lines
125 B
Bash
Executable File
12 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p bin
|
|
if [ -e ./scripts/$1 ]; then
|
|
./scripts/"$@"
|
|
else
|
|
"$@"
|
|
fi
|
|
|
|
rm -f $HOME/.bash_history
|