Home
last modified time | relevance | path

Searched refs:bcat (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/usr.sbin/mkhybrid/src/
H A Deltorito.c58 int bcat; in FDECL1() local
106 bcat = open(bootpath, O_WRONLY | O_CREAT | O_BINARY, S_IROTH | S_IRGRP | S_IRWXU ); in FDECL1()
107 if (bcat == -1) in FDECL1()
115 write(bcat, buf, 2048); in FDECL1()
116 close(bcat); in FDECL1()
/openbsd/gnu/usr.bin/perl/pod/
H A Dperlrebackslash.pod692 "cat" =~ /\bcat\b/; # Matches.
693 "cats" =~ /\bcat\b/; # No match.
694 "cat" =~ /\bcat\B/; # No match.
695 "cats" =~ /\bcat\B/; # Match.
H A Dperlrequick.pod244 $x =~ /\bcat/; # matches cat in 'catenates'
246 $x =~ /\bcat\b/; # matches 'cat' at end of string
H A Dperlretut.pod494 $x =~ /\bcat/; # matches cat in 'catenates'
496 $x =~ /\bcat\b/; # matches 'cat' at end of string
2379 $x =~ /\bcat\b/; # matches 'cat' in 'Tom-cat'