Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

remove_brackets(1) [debian man page]

remove_brackets(1)					      General Commands Manual						remove_brackets(1)

NAME
remove_brackets - remove delimiters from text SYNOPSIS
remove_brackets delimiter1 delimiter2 DESCRIPTION
remove_brackets is a filter that removes the specified delimiters from the beginning/end of the text sent through it. It reads text from stdin and writes the result to stdout. The delimiters can be arbitrary characters, but things like { }, ( ), etc. are most common. The delimiters are removed only if both of them match. Please note that remove_brackets is intended mainly to be run from XView's text menu. It is used in the default text_extras_menu. AUTHOR
Martin Buck <mbuck@debian.org> for Debian GNU/Linux SEE ALSO
xview(7), capitalize(1), insert_brackets(1), shift_lines(1) XView Version 3.2p1 remove_brackets(1)

Check Out this Related Man Page

FCALL(3)						     Library Functions Manual							  FCALL(3)

NAME
fcall - recreate packet delimiters SYNOPSIS
Fctlfd = open(".../ctl", ORDWR); Fwrite(ctlfd, "push fcall", 10); DESCRIPTION
Fcall is a stream module (see stream(3)) that can be pushed onto a connection to a 9P file server. The function of the module is to recre- ate packet delimiters lost in transmission. The 9P protocol demands that network connections preserve delimiters between messages written to the file server. Stream based protocols, like TCP, are unable to preserve delimiters. The delimiters must be recreated by the receiver before a packet is read by a file system. Fcall examines a data stream and identifies 9P messages from their type. The length of the message is computed from the header. Data is collected and buffered by the stream module until an entire 9P message has been assembled. A single message is then delimited and sent upstream to be read by a file server. SEE ALSO
stream(3), ip(3), exportfs(4), srv(4) SOURCE
/sys/src/9/port/stfcall.c FCALL(3)
Man Page