This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/check.sh

10 lines
125 B
Bash
Raw Normal View History

2016-06-23 12:07:51 -07:00
#!/bin/bash
FILE="$1"
if [ -f "$FILE" ] || [ -d "$FILE" ];
then
echo "[OK ] $FILE"
else
echo "[FAIL] $FILE" >&2
fi