5 lines
61 B
Bash
5 lines
61 B
Bash
#!/bin/bash
|
|
|
|
im_root() {
|
|
[ "$EUID" -eq 0 ] || return 1
|
|
}
|