Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

capl(1) [debian man page]

cacaplay(1)						      General Commands Manual						       cacaplay(1)

NAME
cacaplay - play libcaca files SYNOPSIS
cacaplay [FILE] DESCRIPTION
cacaplay plays libcaca animation files. These files can be created by any libcaca program by setting the CACA_DRIVER environment variable to raw and storing the program's standard output. If no file argument is provided or '-' is used, cacaplay will read its data from the standard input. EXAMPLES
cacaplay file.caca CACA_DRIVER=raw CACA_GEOMETRY=80x32 cacademo | cacaplay SEE ALSO
cacaserver(1) AUTHOR
This manual page was written by Sam Hocevar <sam@hocevar.net>. libcaca 2006-11-10 cacaplay(1)

Check Out this Related Man Page

libcaca-canvas(3caca)						      libcaca						     libcaca-canvas(3caca)

NAME
libcaca-canvas - The libcaca canvas format (version 1) All types are big endian. struct { magic: uint8_t caca_header[2]; // '' uint8_t caca_file_type[2]; // 'CV' canvas_header: uint32_t control_size; // Control size (canvas_data - canvas_header) uint32_t data_size; // Data size (EOF - canvas_data) uint16_t version; // Canvas format version // bit 0: set to 1 if canvas is compatible // with version 1 of the format // bits 1-15: unused yet, must be 0 uint32_t frames; // Frame count uint16_t flags; // Feature flags // bits 0-15: unused yet, must be 0 frame_info: struct { uint32_t width; // Frame width uint32_t height; // Frame height uint32_t duration; // Frame duration in milliseconds, 0 to // not specify a duration uint32_t attr; // Graphics context attribute int32_t cursor_x; // Cursor X coordinate int32_t cursor_y; // Cursor Y coordinate int32_t handle_x; // Handle X coordinate int32_t handle_y; // Handle Y coordinate } frame_list[frames]; control_extension_1: control_extension_2: ... control_extension_N: ... // reserved for future use canvas_data: uint8_t data[data_size]; // canvas data data_extension_1: data_extension_2: ... data_extension_N: ... // reserved for future use }; Version 0.99.beta18 Fri Apr 6 2012 libcaca-canvas(3caca)
Man Page

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

System hanged. help required.

HI, I have a Fedora running box. I am not able to ping/login. I guess it got hanged. Can any one help me how to login to that box with out restart? (8 Replies)
Discussion started by: praveen_b744
8 Replies

2. UNIX for Advanced & Expert Users

wierd Blue Quartz GUI problem with Virtual domains

Hi all Sorry this will turn out to be a long post since the code is kinda long. I have a centos 4.x box running Blue Quartz management system. I manage like 70 virtual domains on this server. I asked this question at the Blue Quartz Forum site NuOnce Networks / Cobalt - BlueQuartz - CentOS... (1 Reply)
Discussion started by: mcraul
1 Replies

3. Solaris

Sense Key: Media Error

Hi all, We have below WARNING in /var/adm/messages file from our Solaris server. WARNING: /sbus@1f,0/SUNW,fas@e,8800000/sd@0,0 (sd0): Error for Command: write(10) Error Level: Fatal Requested Block: 16745265 Error Block: 16745269 Vendor: SEAGATE Serial Number:... (8 Replies)
Discussion started by: summerboy
8 Replies

4. Shell Programming and Scripting

searching thru or combining multiple lines in a unix file

This is the problem actually: This regex: egrep "low debug.*\".*\"" $dbDir/alarmNotification.log is looking for data between the two quotation marks: ".*\" When I hate data like this: low debug 2009/3/9 8:30:20.47 ICSNotificationAlarm Prodics01ics0003 IC... (0 Replies)
Discussion started by: ndedhia1
0 Replies

5. Programming

Modifying sniffex.c to include concepts of parallel programming or threads

HI For the past 1 week i have been trying to include the concepts of parallel programming or thread in the sniffex.c code. Haven't been able to.. Please suggest sm appropriate modifications to the following code: /* * sniffex.c * * Sniffer example of TCP/IP packet capture using... (1 Reply)
Discussion started by: aka.bhagvanji
1 Replies

6. Shell Programming and Scripting

Preserving file format and spacing in output file

Hi I have a file with the following structure "VATTENFALL GLOBAL" "Vattenfall Tray" "BARCLAYS BANK LONDON" "Capula" "P1 AGEAS GLOBAL COMPANY" "AAC - Optiver" The requirement is like this 1) Take 2 input... (16 Replies)
Discussion started by: sudeep.id
16 Replies

7. Shell Programming and Scripting

awk script to split file into multiple files based on many columns

So I have a space delimited file that I'd like to split into multiple files based on multiple column values. This is what my data looks like 1bc9A02 1 10 1000 FTDLNLVQALRQFLWSFRLPGEAQKIDRMMEAFAQRYCQCNNGVFQSTDTCYVLSFAIIMLNTSLHNPNVKDKPTVERFIAMNRGINDGGDLPEELLRNLYESIKNEPFKIPELEHHHHHH 1ku1A02 1 10... (9 Replies)
Discussion started by: viored
9 Replies

8. UNIX for Dummies Questions & Answers

Intersection by part of the string

Hi, I like to intersect two files based on their first columns. Here is the code which does the trick for me: awk 'NR==FNR{A;next}$1 in A' file1 file2 However, this only looks for exact matches between the two files in the first column. I need them to be printed even if part of the string... (10 Replies)
Discussion started by: a_bahreini
10 Replies

9. Shell Programming and Scripting

Shell Script with following awk command pls help

Hi I want to create a shell script with the following awk command & also get the filenames in output. awk '/<catetcsecuretty0>/ {p=1} /<catvarlogmessages0>/ {p=0} p' *.xml As there will be multiple outputs related to many xml files I cannot identify which output belongs to which file ... (5 Replies)
Discussion started by: sharp488
5 Replies