/usr/bin/insert_brackets is in xviewg 3.2p1.4-28.1.
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 | #!/usr/bin/perl --
# Free replacement for Sun's insert_brackets as required by Openwin's
# text_extras_menu.
#
# Copyright (C) 1998 by Martin Buck <mbuck@debian.org>
# Licensed under the GNU General Public License
if ($#ARGV != 1) {
die "Usage: $0 <left> <right>\n";
}
print "$ARGV[0]";
while (<STDIN>) {
print $_;
}
print "$ARGV[1]";
|