Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 19 of 19) sorted by relevance

/coreutils/tests/
DCuTmpdir.pm58 my $prefix = $_[1];
60 $ME eq '-' && defined $prefix
61 and $ME = $prefix;
63 if ($prefix !~ /^\//)
67 $prefix = "$cwd/$prefix";
71 $prefix =~ m!^([-+\@\w./]+)$!
72 or skip_test $prefix;
73 $prefix = $1;
95 $dir = File::Temp::tempdir("$prefix.tmp-XXXX", CLEANUP => 1 );
/coreutils/scripts/
Dautotools-install112 prefix=
119 --prefix=*) prefix=`expr "$option" : '--prefix=\(.*\)'`;;
124 test -n "$prefix" \
127 case $prefix in
129 *) die 'invalid prefix: '"$prefix"': it must be an absolute name';;
138 case $prefix in
151 export PATH=$prefix/bin:$PATH
158 ./configure CFLAGS=-O2 LDFLAGS=-s --prefix=$prefix >makerr-config 2>&1
183 $prefix/lib/pkgconfig:/usr/lib/pkgconfig)
188 PKG_CONFIG_PATH=$prefix/lib/pkgconfig:/usr/lib/pkgconfig
[all …]
/coreutils/tests/split/
Dsuffix-auto-length.sh31 for prefix in 'x' 'xx' ''; do
33 split file.in "$prefix" -b1 --numeric --additional-suffix="$add_suffix" \
35 test "$(ls -1 $prefix*[0-9]*$add_suffix | wc -l)" = 91 || fail=1
36 test -e "${prefix}89$add_suffix" || fail=1
37 test -e "${prefix}9000$add_suffix" || fail=1
38 rm -f $prefix*[0-9]*$add_suffix
/coreutils/src/
Drealpath.c113 path_prefix (char const *prefix, char const *path) in path_prefix() argument
116 prefix++; in path_prefix()
121 if (!*prefix) in path_prefix()
125 if (*prefix == '/' && !prefix[1]) in path_prefix()
129 while (*prefix && *path) in path_prefix()
131 if (*prefix != *path) in path_prefix()
133 prefix++; in path_prefix()
136 return (!*prefix && (*path == '/' || !*path)); in path_prefix()
Ddircolors.c239 append_entry (char prefix, char const *item, char const *arg) in append_entry() argument
247 if (prefix) in append_entry()
248 APPEND_CHAR (prefix); in append_entry()
521 char const *prefix; in main() local
526 prefix = "LS_COLORS='"; in main()
531 prefix = "setenv LS_COLORS '"; in main()
535 fputs (prefix, stdout); in main()
Dfmt.c185 static char const *prefix; variable
333 prefix = ""; in main()
467 prefix = p; in set_prefix()
638 for (s = prefix; out_column != in_column && *s; out_column++) in copy_rest()
741 for (p = prefix; *p != '\0'; p++) in get_prefix()
993 fputs (prefix, stdout); in put_line()
Dcsplit.c134 static char const *volatile prefix = nullptr; variable
889 strcpy (filename_space, prefix); in make_filename()
891 sprintf (filename_space + strlen (prefix), suffix, num); in make_filename()
893 sprintf (filename_space + strlen (prefix), "%0*d", digits, num); in make_filename()
1314 prefix = DEFAULT_PREFIX; in main()
1321 prefix = optarg; in main()
1367 idx_t prefix_len = strlen (prefix); in main()
Dwho.c447 char const *prefix = _("id="); in make_id_equals_comment() local
448 idx_t prefixlen = strlen (prefix); in make_id_equals_comment()
450 char *p = mempcpy (comment, prefix, prefixlen); in make_id_equals_comment()
Dls.c1074 dired_dump_obstack (char const *prefix, struct obstack *os) in dired_dump_obstack() argument
1082 fputs (prefix, stdout); in dired_dump_obstack()
/coreutils/
DREADME-prereq32 prefix=$HOME/prefix # (or wherever else you choose)
33 export PATH=$prefix/bin:$PATH
37 ./configure --prefix=$prefix
Ddist-check.mk71 prefix=$(pfx) install \
80 $(MAKE) prefix=$(pfx) install \
D.gitignore153 /m4/lib-prefix.m4
Dconfigure.ac25 # following the v6.9 tag, and that 58ddd is a prefix of the commit SHA1.
DHACKING243 Note that we used to use an 8-byte SHA1 prefix like "54cbe6e6", because
DNEWS1293 dd now warns about counts specified with a 0x "prefix", since dd will
3393 of lines where one was a prefix of the other. For example, this would
4527 "mkdir -p /a/b/c" no longer fails merely because a leading prefix
5451 * df now shows a HOSTNAME: prefix for each remote-mounted file system on AIX 5.1
/coreutils/tests/misc/
Drealpath.sh64 test $(realpath -m --relative-to=prefix prefixed/1) = '../prefixed/1' || fail=1
65 test $(realpath -m --relative-to=prefixed prefix/1) = '../prefix/1' || fail=1
/coreutils/man/
Dhelp2man507 my $prefix = $2;
509 while (s/^$indent\Q$prefix\E(\S.*)\n*//)
511 $include{$sect} .= "$break\n\\f(CW$prefix$1\\fR\n";
/coreutils/scripts/build-older-versions/
Dbuild-older-versions.sh134 --prefix="$vprefix" \
/coreutils/doc/
Dcoreutils.texi998 kibibyte: @math{2^{10} = 1024}. @samp{K} is special: the SI prefix is
999 @samp{k} and the ISO/IEC 80000-13 prefix is @samp{Ki}, but tradition and
2539 @item -p @var{prefix}
2540 @itemx --prefix=@var{prefix}
2541 Only lines beginning with @var{prefix} (possibly preceded by whitespace)
2542 are subject to formatting. The prefix and any preceding whitespace are
3070 /^==> .* <==$/ @{prefix=substr($0,5,length-8)":"; next@}
3071 @{print prefix$0@}
3309 split [@var{option}] [@var{input} [@var{prefix}]]
3315 @cindex output file name prefix
[all …]