Linux, Unix, /etc/$ To set up this Linux system, do I really have to type long,
cryptic, frequently inconsistent and undocumented commands with
occasional long strings of hex digits?
# Yeah. You got a problem with that?
|
Sponsored links (requires javascript):
![]()
#!/bin/sh
#findfunc: find references to a C function
pattern='[A-Za-z_]*[^A-Za-z_]*'$1'[^A-Za-z_]*('
grep "$pattern" $*
#!/bin/sh
# match: find file <name> without matching <name>c file
for i in $*
do
if [ ! -f "$i"c ];
then
echo "$i";
fi
done
[back to Scripts index] [back to Linux, Unix, etc] [Main Site] [Weblog]
Contents licensed under the GPL