Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

hidd(1) [debian man page]

HIDD(1) 							   User Commands							   HIDD(1)

NAME
hidd - Bluetooth HID daemon DESCRIPTION
hidd - Bluetooth HID daemon Usage: hidd [options] [commands] OPTIONS
-i <hciX|bdaddr> Local HCI device or BD Address -t <timeout> Set idle timeout (in minutes) -n, --nodaemon Don't fork daemon to background -h, --help Display help Commands: --server Start HID server --search Search for HID devices --connect <bdaddr> Connect remote HID device --kill <bdaddr> Terminate HID connection --killall Terminate all connections --show List current HID connections hidd - Bluetooth HID daemon May 2004 HIDD(1)

Check Out this Related Man Page

BTHIDCONTROL(8) 					    BSD System Manager's Manual 					   BTHIDCONTROL(8)

NAME
bthidcontrol -- Bluetooth HID control utility SYNOPSIS
bthidcontrol -h bthidcontrol [-a BD_ADDR] [-c file] [-H file] [-v] command DESCRIPTION
The bthidcontrol utility can be used to query remote Bluetooth HID devices, dump HID descriptors in human readable form and perform simple manipulations on the Bluetooth HID daemon configuration files. The bthidcontrol utility will print results to the standard output and error messages to the standard error. The options are as follows: -a BD_ADDR Specify BD_ADDR for the HID device. Example: -a 00:01:02:03:04:05. -c file Specify path to the Bluetooth HID daemon configuration file. The default path is /etc/bluetooth/bthidd.conf. -H file Specify path to the Bluetooth HID daemon known HIDs file. The default path is /var/db/bthidd.hids. -h Display usage message and exit. -v Be verbose and show items that are being used for padding. command One of the supported commands (see below). Special command help can be used to obtain the list of all supported commands. To get more information about specific command use help command. COMMANDS
The currently supported node commands in bthidcontrol are: Query Dump Known Forget FILES
/etc/bluetooth/bthidd.conf /var/db/bthidd.hids EXIT STATUS
The bthidcontrol utility exits 0 on success, and >0 if an error occurs. SEE ALSO
bthidd(8) AUTHORS
Maksim Yevmenkin <m_evmenkin@yahoo.com> BSD
October 30, 2006 BSD
Man Page

13 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

File names that contain "01" act hidden

Haveing an issue. Anytime a file is created with "01" (zero one) in the name - it cannot be viewed by LS or any other file listing command. Although the file is there, it cannot be seen. I can edit it, run it, anything, except see it..... What happened? Any ideas? (8 Replies)
Discussion started by: n9ninchd
8 Replies

2. UNIX for Advanced & Expert Users

File and Directory Names become hidden

Something very weird has been happening when I'm creating files and directories. When I create a directory, at times depending on the directory name and depth, it becomes hidden and can only be seen typing "ls -a". When I say the name of the directory matters, "my_c++" will be hidden but using... (10 Replies)
Discussion started by: dbinsol1
10 Replies

3. SuSE

hidden boot manager

hello people! I want to install suse linux but i dont want to use lilo, intead i was looking for a boot manager that is hidden and boots windows normally (i know there are many w/ timeouts but thats my last choice) unless a hotkey like F8 is pressed, then it either boots suse or brings up a menu.... (9 Replies)
Discussion started by: thenewestuser
9 Replies

4. UNIX for Dummies Questions & Answers

Transferring hidden files with scp

Is there a way to scp hidden files only ( with regex ) without specifying the name of the hidden files ? Many thanks in advance ! :) (13 Replies)
Discussion started by: matrixmadhan
13 Replies

5. OS X (Apple)

Hidding The Administrator Account in OS X 10.5 (Leopard)

I would like to know how to hide my initial account (which is an administrator account) in the new Leopard 10.5 operating system. In the old OS 10.4 this could be done very easily with the help of NetInfo Manager. You could change the UID to anything below 500 and secure your account, however in... (11 Replies)
Discussion started by: unimachead
11 Replies

6. UNIX for Dummies Questions & Answers

hidden files

I usually use ls -al | awk '{sum = sum + $5} END {print sum}' to sum the size of all files in a directory. However this command includes the hidden files. Is there a command to just add up all the files/sub-directories excluding the hidden files (begins with . and ..) I wanted to check the... (10 Replies)
Discussion started by: lhareigh890
10 Replies

7. Shell Programming and Scripting

Removing "Hidden Characters" on a file

Hi - I'm having a problem with hidden characters on Linux. When I produced an output from Oracle database, there is a an extra "Hidden Character" included on the output. How can I remove that character? See below: The extra dollar sign is creating a new line on my .csv output file. I... (16 Replies)
Discussion started by: Jin_
16 Replies

8. Shell Programming and Scripting

Not visible hidden folder

Hi, In one folder there is a hidden folder. Whenever i do any ls -a i can't see the folder. However i can get into the folder by cd .foldername. Would you please help me to identify what is the problem here. (13 Replies)
Discussion started by: anupdas
13 Replies

9. AIX

Moving Hidden files to normal files

I have a bunch of hidden files in a directory in AIX. I would like to move these hidden files as regular files to another directory. Say i have the following files in directory /x .test~1234~567 .report~5678~123 .find~9876~576 i would like to move them to directory /y as test~1234~567... (10 Replies)
Discussion started by: umesh.narain
10 Replies

10. UNIX for Beginners Questions & Answers

Finding Files with Perl on a Hidden Dir?

Greetings! Been a while since I futzed around with Perl, and came upon a minor headscratcher for the community ;) Here's the basic code which I'm trying to make tick over:#!/usr/bin/perl use strict; use warnings; use diagnostics; print " starting "; while (-e "~/.somedir/testFile")... (9 Replies)
Discussion started by: LinQ
9 Replies

11. AIX

Copy to Windows hidden share

Hi, I need to find a solution for backing up/transferring BACKUP (dump file) from AIX (specifically) to Windows 2012 Hidden Share. The vendor says that he cannot do a copy from his system to hidden share because it requires a password... Personally, I think that there should be a solution... (9 Replies)
Discussion started by: pob579
9 Replies

12. Shell Programming and Scripting

ksh hidden characters in variables

Hi. I'm getting the following hidden characters \uat the start of a string after I pass in variables from the command line. I only noticed this when I set -x in my KSH script. Can anybody tell me how this happens and how to remove them? Many thanks. + STR=$'\uusername testuser1' + print... (12 Replies)
Discussion started by: user052009
12 Replies

13. UNIX for Beginners Questions & Answers

List all files and directories in the current directory separated by commas and sorted by crtime

What I know so far: ls -A will list all files except those starting with a dot ls -d will list all directories ls -m will separate contents by commas For getting crtimes use: stat filename will give me the inode number or ls -i filename will give... (13 Replies)
Discussion started by: chstewar
13 Replies