1#!/bin/sh
2
3# Exit on the first error
4set -e
5
6# Does ln supports the --relative/-r option?
7ln --relative --help >/dev/null 2>&1
8
9# Does realpath exist?
10realpath --help >/dev/null 2>&1
11
12echo OK
13