/usr/share/bug/vim-nox-py2/script is in vim-nox-py2 2:7.4.1689-3ubuntu1.
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 | #!/bin/sh
printf "\n--- real paths of main Vim binaries ---\n" >&3
for f in vi vim gvim; do
if [ -L "/usr/bin/$f" ]; then
printf "/usr/bin/$f is $(readlink -f /usr/bin/$f)\n" >&3
fi
done
|