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