#!/usr/bin/env bash #Applies real-time kernel specific settings found in /etc/rts/* if [ "$1" ]; then if [ -f /etc/rts/"$1" ]; then . /etc/rts/"$1" else exit 1 fi else if [ -f /etc/rts/rts ]; then . /etc/rts/rts else exit 1 fi fi