summaryrefslogtreecommitdiff
path: root/utils/Etsearch
blob: 7d45b9999e90b2949f084262402094b485b47c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
#
# Eterm Search Utility
#
# $Id$

if [ $# -gt 1 -o "X$1" = "X-h" -o "X$1" = "X--help" ]; then
  echo "Syntax:  Etsearch [string]"
  echo "   (To clear the highlighting from a previous search,"
  echo "    do not specify a string.)"
  echo
  exit 0
fi

# Code to figure out if we need 'echo -n' or 'echo "\c"', stolen from configure
if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
  # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
    ac_n= ac_c='
'
  else
    ac_n=-n ac_c=
  fi
else
  ac_n= ac_c='\c'
fi

STR="$1"

echo $ac_n "]6;72;${STR}$ac_c"