5 lines
86 B
Bash
5 lines
86 B
Bash
#!/usr/bin/env bash
|
|
|
|
CHECK_DIR="/dev/shm"
|
|
findmnt -kn "$CHECK_DIR" &>/dev/null
|
|
exit $? |