Re: /etc/shadow * and ! meaning

2006-07-18 Thread Mike Frysinger
On Tuesday 18 July 2006 10:51, Ing. Hugo Mora wrote: or where can I get that info? (I looked at man page and howtos but no luck) read the source code of shadow and/or try e-mailing the shadow list since they are the ones who maintain the suite of shadow utils: [EMAIL PROTECTED] -mike

annoyances with tr

2006-07-18 Thread icewind
input: abc123abc call: tr abc123abc -d '[^0-9]' output:abcabc regex-rule: ^ is for negating the match output should be 123 ___ Bug-coreutils mailing list Bug-coreutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-coreutils

undocumented stty speeds

2006-07-18 Thread Dan Jacobson
I am on a page of Info called Special, that must be related to stty. `N' Set the input and output speeds to N. N can be one of: 0 50 75 110 134 134.5 150 200 300 600 1200 1800 2400 4800 9600 19200 38400 `exta' `extb'. `exta' is the same as 19200; `extb' is the same as 38400.

Re: annoyances with tr

2006-07-18 Thread Philip Rowlands
On Tue, 18 Jul 2006, icewind wrote: input: abc123abc call: tr abc123abc -d '[^0-9]' output:abcabc regex-rule: ^ is for negating the match output should be 123 (Please note - the bug-textutils address you mailed suggests that you have a rather old version of tr. textutils, fileutils, and

can't understand csplit without examples

2006-07-18 Thread Dan Jacobson
csplit info page: `N' Create an output file containing the input up to but not including line N (a positive integer). If followed by a repeat count, also create an output file containing the next N lines of the input file once for each repeat. Add an example.