8 lines
104 B
Bash
8 lines
104 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -f toaruos.iso ]; then
|
||
|
echo "cdrom tags"
|
||
|
else
|
||
|
echo "system tags userspace"
|
||
|
fi
|