forked from sig_core/toolkit
7 lines
180 B
Bash
7 lines
180 B
Bash
|
#!/bin/bash
|
||
|
r_log "coreutils" "Testing pathchk"
|
||
|
pathchk -p "<>" 2> /dev/null
|
||
|
[ $? -eq 1 ] && pathchk /var/tmp/fakePathAndFile
|
||
|
[ $? -eq 0 ] && pathchk /var/tmp
|
||
|
r_checkExitStatus $?
|