Browse Source

add wrapper for stat

Waldemar Brodkorb 8 years ago
parent
commit
93ada9cdf7
1 changed files with 19 additions and 0 deletions
  1. 19 0
      scripts/stat

+ 19 - 0
scripts/stat

@@ -0,0 +1,19 @@
+#!/usr/bin/env bash
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+declare -a opts
+while [[ "$1" ]]; do
+	case "$1" in
+	-c) shift ;;
+	-f) shift ;;
+	*) opts+=("$1") ;;
+	esac
+	shift
+done
+
+if /usr/bin/stat -qs .>/dev/null 2>&1; then 
+  /usr/bin/stat -f %z "${opts[@]}"
+else 
+  /usr/bin/stat -c %s "${opts[@]}"
+fi