mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 20:14:22 +00:00
8 lines
95 B
Bash
8 lines
95 B
Bash
|
# vim: set ts=3 sw=3 noet ft=sh : bash
|
||
|
|
||
|
echo_cmd() {
|
||
|
eval 'echo "$@"'
|
||
|
eval "$@"
|
||
|
return $?
|
||
|
}
|