代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/357083/3030742
h offsets.h
#ifndef _ASM_IA64_OFFSETS_H
#define _ASM_IA64_OFFSETS_H
/*
* DO NOT MODIFY
*
* This file was generated by arch/ia64/tools/print_offsets.awk.
*
*/
#define PT_PTRACED_BIT 0
#define PT_TRACESYS_BIT
www.eeworm.com/read/473980/6828063
sh lab6_3.sh
clear
echo enter a roll no
read roll
grep ^$roll lab6_1.txt > abc
awk -F":" '
BEGIN{ printf("Roll\t" "Name\t" "Branch\t" "Sem\t" "Total Mraks\n") }
{ print $1"\t", $2"\t", $3"\t", $4"\t",
www.eeworm.com/read/195191/8170563
sh auto_ct2ps.sh
#!/bin/sh
# auto_ct2ps
# runs awk to split a multi-structure ct file into single structure
# files, then runs sir_graph
if [ $# -lt 1 ]; then
echo -e " *** Usage: auto_ct2ps in_fil1 [o]\n\tsuffix
www.eeworm.com/read/236570/14011514
postinst
#! /bin/sh
if [ -e /etc/cron.daily/boa ]; then
echo 'conffile /etc/cron.daily/boa exists. New functionality is in /etc/logrotate.d/boa.'
if test `md5sum /etc/cron.daily/boa | awk '{print $1}'` =
www.eeworm.com/read/438832/7725799
sh ex44.sh
#!/bin/bash
# 结束ppp进程来强制登出log-off.
# 本脚本应该以root用户的身份来运行.
killppp="eval kill -9 `ps ax | awk '/ppp/ { print $1 }'`"
# -------- ppp的进程ID -------
$killppp # 这个变量
www.eeworm.com/read/125133/6033045
in configure.in
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/codegen.c)
AC_CONFIG_AUX_DIR(bin)
dnl Checks for programs. FIXME: need to check for Gnu Make?
AC_PROG_AWK
AC_PROG_CC
AC
www.eeworm.com/read/124347/6053192
rmsym
#!/bin/sh
lib=$1; shift
nm=$1; shift
ar=$1; shift
ranlib=$1; shift
grepit=`echo $* | sed 's/ /|__imp__/g'`
[ -n "$grepit" ] && grepit="__imp__$grepit"
objs=`$nm $lib | awk -F: '/^d[0-9]*.o:/ {obj=$1}
www.eeworm.com/read/257319/11934214
spec php4-sqlite3.spec
%define def_php_extdir /usr/lib/php/extensions
%define php_extdir %(php-config --extension-dir || echo "%{def_php_extdir}")
%define pear_dir %(pear config-show | grep php_dir | awk '{print $4}')