| /src/external/bsd/zstd/dist/tests/cli-tests/compression/ |
| multiple-files.sh | 6 echo "file2" > file2 8 echo "Test zstd ./file1 - file2" 10 echo "stdin" | zstd ./file1 - ./file2 | zstd -d 12 cat file2.zst | zstd -d 14 echo "Test zstd -d ./file1.zst - file2.zst" 15 rm ./file1 ./file2 16 echo "stdin" | zstd - | zstd -d ./file1.zst - file2.zst 18 cat file2 20 echo "zstd -d ./file1.zst - file2.zst -c [all...] |
| /src/usr.bin/diff/ |
| pr.h | 35 struct pr *start_pr(char *file1, char *file2);
|
| pr.c | 44 start_pr(char *file1, char *file2) 53 xasprintf(&header, "%s %s %s", diffargs, file1, file2);
|
| /src/external/gpl2/groff/dist/contrib/gdiffmk/tests/ |
| runtests.in | 46 ${command} ${srcdir}/file1 ${srcdir}/file2 ${ResultFile} 2>${tmpfile} 52 ${command} ${srcdir}/file1 ${srcdir}/file2 >${ResultFile} 2>&1 57 ${command} ${srcdir}/file1 ${srcdir}/file2 - >${ResultFile} 2>&1 62 ${command} - ${srcdir}/file2 <${srcdir}/file1 >${ResultFile} 2>&1 65 # FILE2 from standard input via - argument 67 ${command} ${srcdir}/file1 - <${srcdir}/file2 >${ResultFile} 2>&1 72 ${command} -aA -cC -dD ${srcdir}/file1 ${srcdir}/file2 >${ResultFile} 2>&1 77 cp ${srcdir}/file2 tmp_file7 84 ${command} -D ${srcdir}/file1 ${srcdir}/file2 >${ResultFile} 2>&1 90 ${srcdir}/file1 ${srcdir}/file2 >${ResultFile} 2>& [all...] |
| /src/tests/kernel/kqueue/read/ |
| t_file2.c | 46 ATF_TC(file2); variable 47 ATF_TC_HEAD(file2, tc) 54 ATF_TC_BODY(file2, tc) 76 ATF_TP_ADD_TC(tp, file2);
|
| /src/usr.bin/make/unit-tests/ |
| varname-vpath.exp | 4 CondParser_Eval: exists(file2-in-subdirectory) 5 "file2-in-subdirectory" does not exist 9 CondParser_Eval: exists(file2-in-subdirectory) 10 "file2-in-subdirectory" exists in "varname-vpath.dir2/file2-in-subdirectory"
|
| varname-circumflex.exp | 3 unique: file1.o file2.o file3.o 4 duplicate: file1.o file2.o file3.o 8 wait: file1.o .WAIT_1 file2.o
|
| dir-expand-path.exp | 2 dir-expand-path.dir.1/file2.src
|
| /src/usr.bin/cmp/ |
| cmp.c | 70 const char *file1, *file2; local 110 if (strcmp(file2 = argv[1], "-") == 0) { 116 file2 = "stdin"; 118 else if ((fd2 = open(file2, O_RDONLY, 0)) < 0) { 120 warn("%s", file2); 146 err(ERR_EXIT, "%s", file2); 153 c_special(fd1, file1, skip1, fd2, file2, skip2); 156 fd2, file2, skip2, sb2.st_size); 165 "Usage: %s [-c] [-l | -s] file1 file2 [skip1 [skip2]]\n",
|
| special.c | 50 c_special(int fd1, const char *file1, off_t skip1, int fd2, const char *file2, off_t skip2) 61 err(ERR_EXIT, "%s", file2); 89 diffmsg(file1, file2, byte, line); 100 errmsg(file2, byte, line); 106 eofmsg(file2, byte, line);
|
| misc.c | 78 diffmsg(const char *file1, const char *file2, off_t byte, off_t line) 82 file1, file2, (long long)byte, (long long)line);
|
| regular.c | 56 int fd2, const char *file2, off_t skip2, off_t len2) 67 eofmsg(file2, len2 + 1, 0); 106 diffmsg(file1, file2, byte, line); 124 eofmsg(len1 > len2 ? file2 : file1, byte, line); 130 c_special(fd1, file1, skip1, fd2, file2, skip2);
|
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| openat-priv.h | 61 int fd2, char const *file2, 62 int (*func) (char const *file1, char const *file2));
|
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| openat-priv.h | 61 int fd2, char const *file2, 62 int (*func) (char const *file1, char const *file2));
|
| /src/external/bsd/ntp/dist/scripts/stats/ |
| etf.S | 2 file2 <- "etf_summary" label 9 cat("\n", file=file2 , append=TRUE, fill=FALSE, sep="") 10 cat(file1, "\n", file=file2, append=TRUE, fill=FALSE, sep="") 11 cat("etf1 ", count, ", T ", mean, " ns, R ", slope, " ps/s, std ", std, " us\n", file=file2, append=TRUE, fill=FALSE, sep="")
|
| /src/tests/bin/cp/ |
| t_cp.sh | 28 FILES="file file2 file3 link dir dir2 dirlink target" 42 echo "I'm a file, 2" > file2 62 rm -f file2 65 atf_check cp file file2 66 cp_compare file_to_file_simple file file2 67 if [ `stat -f "%Lp" file2` != "755" ]; then 72 chmod 777 file2 73 cp_compare file_to_file_simple file file2 74 if [ `stat -f "%Lp" file2` != "777" ]; then 109 atf_check cp file2 lin [all...] |
| /src/bin/ln/ |
| ln.c | 190 const char *file1, *file2; local 201 file2 = strrchr(path2, '/'); 202 if (file2 != NULL) 203 file2++; 205 file2 = path2; 206 if (strcmp(file1, file2) != 0) 208 if (file1 - path1 >= PATH_MAX || file2 - path2 >= PATH_MAX) 218 if (file2 == path2) 221 memcpy(pathbuf, path2, file2 - path2); 222 pathbuf[file2 - path2] = '\0' [all...] |
| /src/tests/bin/tar/ |
| t_tar.sh | 40 # store foo into file2.tar, then append bar to file2.tar 41 atf_check -s exit:0 -o empty -e empty tar -cf file2.tar foo 42 atf_check -s exit:0 -o empty -e empty tar -rf file2.tar bar 44 # ensure that file1.tar and file2.tar are equal 45 atf_check -s exit:0 -o empty -e empty cmp file1.tar file2.tar
|
| /src/external/mpl/bind/dist/bin/tests/system/ |
| digcomp.pl | 24 $file2 = $ARGV[1]; 90 open(FILE2, $file2) || die("open: $file2: $!\n"); 91 while (<FILE2>) { 114 print("Only in $file2 (missing from $file1):\n") 136 print("Only in $file2 (missing from $file1):\n") 144 close(FILE2); 150 print("Only in $file1 (missing from $file2):\n")
|
| makejournal.c | 88 char *origin, *file1, *file2, *journal; local 94 printf("usage: %s origin file1 file2 journal\n", argv[0]); 100 file2 = argv[3]; 130 result = loadzone(&newdb, origin, file2); 132 fprintf(stderr, "Couldn't load %s: ", file2);
|
| /src/regress/sys/kern/unfdpass/ |
| Makefile | 8 CLEANFILES+=file1 file2 file3 file4 file5 file6 file7 file8 file9 file10 \
|
| /src/tests/bin/pax/ |
| t_pax.sh | 41 # store foo into file2.tar, then append bar to file2.tar 43 pax -w -b 512 -x ustar -f file2.tar foo 45 pax -w -b 512 -x ustar -f file2.tar -a bar 47 # ensure that file1.tar and file2.tar are equal 48 atf_check -s exit:0 -o empty -e empty cmp file1.tar file2.tar
|
| /src/external/gpl2/xcvs/dist/diff/ |
| dir.c | 130 compare_names (file1, file2) 131 void const *file1, *file2; 134 * (char const *const *) file2);
|
| /src/external/gpl2/xcvs/dist/src/ |
| rcscmds.c | 495 Show differences between FILE1 and FILE2. Either one can be 510 diff_exec (const char *file1, const char *file2, const char *label1, 515 file1, file2, label1, label2, out); 518 /* If either file1 or file2 are special files, pretend they are 534 strcmp (file2, DEVNULL) != 0) 540 if (lstat (file2, &sb2) < 0) 541 error (1, errno, "cannot get file information for %s", file2); 546 file2 = DEVNULL; 558 call_diff_add_arg (file2);
|
| /src/usr.bin/sdiff/ |
| sdiff.c | 65 size_t file1ln, file2ln; /* line number of file1 and file2 */ 157 FILE *diffpipe, *file1, *file2; local 171 * file1, and file2 won't have arguments so doubling them will 259 * or file2 are not regular files. This allows sdiff and diff 266 /* file1 and file2 are the same, so copy to same temp file. */ 270 /* Copy file1 and file2 into separate temp files. */ 318 if ((file2 = fopen(filename2, "r")) == NULL) 325 while (parsecmd(diffpipe, file1, file2) != EOF) 352 s2 = xfgets(file2); 359 fclose(file2); [all...] |