forked from sig_core/toolkit
11 lines
244 B
Bash
Executable File
11 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
r_log "coreutils" "Test head and tail"
|
|
|
|
r_log "coreutils" "Testing head"
|
|
head -n1 /etc/os-release | grep -q NAME
|
|
r_checkExitStatus $?
|
|
|
|
r_log "coreutils" "Testing tail"
|
|
tail -n1 /etc/os-release | grep -q SUPPORT
|
|
r_checkExitStatus $?
|