1
0
mirror of https://github.com/rancher/os-kernel.git synced 2025-05-01 03:43:21 +00:00
os-kernel/scripts/entry
2016-10-13 11:12:59 -07:00

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