Searched refs:newext (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts.v2/
H A Dnewext4 # newext: change filename extension
5 # @(#) newext.sh 1.1 93/04/13
15 usage="Usage: newext [-th] <oldext> <newext> [filename ...]"
20 Rename all given files that end in oldext with newext replacing oldext.
40 newext=$2
54 newname="${file%$oldext}$newext"
/macosx-10.10.1/ruby-106/ruby/lib/rake/ext/
H A Dstring.rb9 # Replace the file extension with +newext+. If there is no extension on
14 def ext(newext='')
16 if newext != ''
17 newext = (newext =~ /^\./) ? newext : ("." + newext)
19 self.chomp(File.extname(self)) << newext
/macosx-10.10.1/nano-12/src/
H A Drcfile.c316 exttype *newext; local
332 newext = (exttype *)nmalloc(sizeof(exttype));
336 newext->ext_regex = mallocstrcpy(NULL, fileregptr);
337 newext->ext = NULL;
340 endsyntax->extensions = newext;
342 endext->next = newext;
343 endext = newext;
346 free(newext);
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Deap.h116 int EapExtAdd(eap_ext *newext);
H A Deap.c511 EapExtAdd(eap_ext *newext) argument
516 if (eap->type == newext->type)
521 last->next = newext;
523 eap_extensions = newext;
524 newext->next = NULL;
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dfile_list.rb272 # array.collect { |item| item.ext(newext) }
275 def ext(newext='')
276 collect { |fn| fn.ext(newext) }
/macosx-10.10.1/apr-32/apr/apr/build/
H A Daplibtool.c309 char *newarg = NULL, *newext; local
348 newext = strrchr(newarg, '.') + 1;
349 strcpy(newext, shared ? DYNAMIC_LIB_EXT : STATIC_LIB_EXT);
H A Djlibtool.c788 char *newarg, *newext; local
804 newext = strrchr(newarg, '.') + 1;
808 strcpy(newext, STATIC_LIB_EXT);
811 strcpy(newext, DYNAMIC_LIB_EXT);
814 strcpy(newext, MODULE_LIB_EXT);
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A DMANIFEST963 examples/scripts.v2/newext f

Completed in 259 milliseconds