8 lines
99 B
Bash
8 lines
99 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -z $1 ]; then
|
||
|
distrobox enter -n toolbox
|
||
|
else
|
||
|
distrobox $@ -n toolbox
|
||
|
fi
|