This file is indexed.

/usr/share/radare/gradare/Shell is in radare-gtk 1:1.5.2-6.

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
#!/bin/sh
if [ -z "$1" ]; then
	while : ; do radare -w malloc://256 ; echo "..." ; sleep 1 ; done
else
	while : ; do radare -w "$1" ; echo "..." ; sleep 1 ; done
fi