5 lines
141 B
Bash
Executable File
5 lines
141 B
Bash
Executable File
#!/bin/bash -e
|
|
### Copyright 2025 WebPros International GmbH. All rights reserved.
|
|
declare -r FILE="${1?File is not set}"
|
|
stat -c %a "$FILE"
|