Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fftest(1) [centos man page]

fftest(1)						      General Commands Manual							 fftest(1)

NAME
fftest - tests force-feedback devices. SYNOPSIS
fftest <device> DESCRIPTION
fftest provides a variety of tests which can be applied to force-feedback devices. Beware, the tests may damage your device! OPTIONS
<device> The device to test. SEE ALSO
ffcfstress(1), ffmvforce(1), jstest(1). AUTHOR
fftest was written by Johann Deneux. This manual page was written by Stephen Kitt <steve@sk2.org>, for the Debian GNU/Linux system (but may be used by others). It was last modified for fftest dated October 19, 2004. fftest March 8, 2009 fftest(1)

Check Out this Related Man Page

EVTEST(1)																 EVTEST(1)

NAME
evtest - Input device event monitor and query tool SYNOPSIS
evtest /dev/input/eventX evtest --query /dev/input/eventX <type> <value> DESCRIPTION
The first invocation type displayed above ("capture mode") causes evtest to display information about the specified input device, including all the events supported by the device. It then monitors the device and displays all the events layer events generated. In the second invocation type ("query mode"), evtest performs a one-shot query of the state of a specific key value of an event type. type is one of: EV_KEY, EV_SW, EV_SND, EV_LED (or the numerical value) value can be either a decimal representation (e.g. 44), hex (e.g. 0x2c), or the constant name (e.g. KEY_Z) of the key/switch/sound/LED being queried. If the state bit is set (key pressed, switch on, ...), evtest exits with code 10. If the state bit is unset (key depressed, switch off, ...), evtest exits with code 0. No other output is generated. evtest needs to be able to read from the device; in most cases this means it must be run as root. evtest is commonly used to debug issues with input devices in X.Org. The output of evtest shows the information presented by the kernel; based on this information it can be determined whether a bug may be a kernel or an X.Org issue. DIAGNOSTICS
If evtest does not show any events even though the device is being used, the device may be grabbed by a process (EVIOCGRAB). This is usually the case when debugging a synaptics device from within X. VT switching to a TTY or shutting down the X server terminates this grab and synaptics devices can be debugged. EXIT CODE
evtest returns 1 on error. When used to query state, evtest returns 0 if the state bit is unset and 10 if the state bit is set. SEE ALSO
inputattach(1) AUTHOR
evtest was written by Vojtech Pavlik <vojtech@suse.cz[1]>. This manual page was written by Stephen Kitt <steve@sk2.org[2]>, based on that present in the lineakd package, for the Debian GNU/Linux system (but may be used by others). NOTES
1. vojtech@suse.cz mailto:vojtech@suse.cz 2. steve@sk2.org mailto:steve@sk2.org 05/21/2012 EVTEST(1)
Man Page

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Differencing between two files

I have two files. One from last month and one from this month. I need to identify the differences between the files so I can process only the differences. I ran the following command: diff -C 1 bndl1111980740907_sort.txt bndl1131363071007_sort.txt > difftest.txt It gave me a "-" in the... (2 Replies)
Discussion started by: PSermonte
2 Replies

2. Shell Programming and Scripting

Problem with sed and negative regexpr's

I have a file with various syntax that I'm try to run sed on to change over a specific regexp and having problems. I want to swap all instances of a token so long as the token isn't followed by either an alphanumeric character, an underscore, or an exclamation point. The test file looks like... (1 Reply)
Discussion started by: ericbmn1
1 Replies

3. Shell Programming and Scripting

Modify text file using sed

Hello all, I have some text files I need to do the following on: Delete banner page (lines 1-56) --I am doing this using sed Remove ^M --I am doing this using vi Remove trailer page --this can vary based on the contents of the file, it usually starts with *************************** I am... (5 Replies)
Discussion started by: jeffs42885
5 Replies