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

📄 create_dev

📁 Bluezan implementation of the Bluetooth&#8482 wireless standards specifications for Linux. The code
💻
字号:
#!/bin/sh##  Create Bluetooth devices in /dev##  $Id: create_dev,v 1.1 2003/01/15 13:08:16 holtmann Exp $#VHCI_MAJOR=10VHCI_MINOR=250RFCOMM_MAJOR=216## Create device for VHCI#if [ ! -c /dev/vhci ]; then	mknod /dev/vhci c ${VHCI_MAJOR} ${VHCI_MINOR}	chmod 664 /dev/vhcifi## Create devices for RFCOMM#for i in `seq 0 255`do	if [ ! -c /dev/rfcomm$i ]; then		mknod -m 666 /dev/rfcomm$i c ${RFCOMM_MAJOR} $i	fidone

⌨️ 快捷键说明

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