/usr/share/bug/vim-gtk3/script is in vim-gtk3 2:8.0.1453-1ubuntu1.
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
|