⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getent

📁 Axis 221 camera embedded programing interface
💻
字号:
#!/bin/sh# $Header: /usr/local/cvs/linux/libs/uClibc/extra/scripts/getent,v 1.1.1.1 2005/01/24 11:50:39 aurer Exp $search_entry() {  if [ -e "$1" ] ; then    /bin/egrep -v "^#" $1 | /bin/sed 's/#.*$//' | /bin/egrep "${string}" | /bin/sed -n 1p    retval=$?    [ "$retval" = 0 ] || retval=2  else    retval=2  fi}file="/etc/$1"string="dummy"#aliases|ethers|group|hosts|netgroup|networks|passwd|protocols|rpc|services|shadow)# dns based search is not supported for hosts|networks# networks searches ^string# protocols|rpc|services searches string anywhere# ethers|netgroup ?# it returns only the first matchcase $1 in  group|passwd|shadow)    string="^\<$2\>:"    ;;  aliases)    if [ -f /etc/postfix/aliases ] ; then      file="/etc/postfix/aliases"    elif [ -f /etc/mail/aliases ] ; then      file="/etc/mail/aliases"    fi    string="^\<$2\>:"    ;;  networks)    string="^\<$2\>"    ;;  hosts|protocol|rpc|services)    string="\<$2\>"    ;;  *)    echo "Unknown database: $1"    exit 1    ;;esacsearch_entry $file $2exit $retval

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -