This file is indexed.

/usr/lib/ardour5/utils/ardour-util.sh is in ardour 1:5.12.0-3.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#!/bin/sh

# This is a wrapper script for using the ardour-session utilities
# it is intended to be symlinked into $PATH for every session-tool

export GTK_PATH=/etc/ardour5:/usr/lib/ardour5${GTK_PATH:+:$GTK_PATH}
export LD_LIBRARY_PATH=/usr/lib/ardour5${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}

# Running Ardour requires these 3 variables to be set

export ARDOUR_DATA_PATH=/usr/share/ardour5
export ARDOUR_CONFIG_PATH=/etc/ardour5
export ARDOUR_DLL_PATH=/usr/lib/ardour5
export VAMP_PATH=/usr/lib/ardour5/vamp

SELF=`basename $0`
exec "/usr/lib/ardour5/utils/$SELF" "$@"