]> Dogcows Code - chaz/yoink/blobdiff - cscope.make
bugfix: service and name swapped
[chaz/yoink] / cscope.make
index 990b01c3bb342b7a71321ec2478ec9c326c84b9e..3349d6d8a71c4f16e47e78d27707820dd0b5e292 100755 (executable)
@@ -1,12 +1,12 @@
-#!/bin/bash
+#!/bin/sh
 
-current=`pwd`
+current="$PWD"
 cd /
 find "$current" \
 -iname "*.c"   -o \
 -iname "*.h"   -o \
 -iname "*.cc"  -o \
--iname "*.hh"  |sed '/ / s/^\(.*\)/"\1"/' >"$current/cscope.files"
+-iname "*.hh"  | sed '/ / s/^\(.*\)/"\1"/' >"$current/cscope.files"
 
 cd "$current"
 
This page took 0.017292 seconds and 4 git commands to generate.