qemush : utilisation de la variable bin
This commit is contained in:
parent
85e31307ec
commit
f24e2a6568
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ exec_as() {
|
||||||
exec_as qemu "$@" || exit
|
exec_as qemu "$@" || exit
|
||||||
|
|
||||||
bin=bin
|
bin=bin
|
||||||
PATH="./bin:${PATH}"
|
PATH="./${bin}:${PATH}"
|
||||||
|
|
||||||
perror() {
|
perror() {
|
||||||
>&2 printf '\033[1;31mERROR:\033[0m \033[1m%s\033[0m\n' "$*"
|
>&2 printf '\033[1;31mERROR:\033[0m \033[1m%s\033[0m\n' "$*"
|
||||||
|
@ -62,7 +62,7 @@ public_active() {
|
||||||
|
|
||||||
public_ls() {
|
public_ls() {
|
||||||
echo "Available machines:"
|
echo "Available machines:"
|
||||||
ls --color=auto bin
|
ls --color=auto "$bin"
|
||||||
}
|
}
|
||||||
|
|
||||||
diskpath() {
|
diskpath() {
|
||||||
|
|
Loading…
Reference in a new issue