1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553
|
-------------------------------
running: ./dlocate /usr/bin/dlocate
COLUMNS="195"
TEMP=" -v -- '/usr/bin/dlocate'"
PKGS='([0]="/usr/bin/dlocate")'
OPTION="DEFAULT"
RE_SEPARATOR="|"
PKGS_REGEXP="/usr/bin/dlocate"
FILES_REGEXP="(/usr/bin/dlocate)"
RUNNING: grep -E -- '/usr/bin/dlocate' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
dlocate: /usr/bin/dlocate
-------------------------------
-------------------------------
running: ./dlocate /usr/sbin/cron
COLUMNS="195"
TEMP=" -v -- '/usr/sbin/cron'"
PKGS='([0]="/usr/sbin/cron")'
OPTION="DEFAULT"
RE_SEPARATOR="|"
PKGS_REGEXP="/usr/sbin/cron"
FILES_REGEXP="(/usr/sbin/cron)"
RUNNING: grep -E -- '/usr/sbin/cron' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
cron: /usr/sbin/cron
-------------------------------
-------------------------------
running: ./dlocate /usr/bin/dpkg
COLUMNS="195"
TEMP=" -v -- '/usr/bin/dpkg'"
PKGS='([0]="/usr/bin/dpkg")'
OPTION="DEFAULT"
RE_SEPARATOR="|"
PKGS_REGEXP="/usr/bin/dpkg"
FILES_REGEXP="(/usr/bin/dpkg)"
RUNNING: grep -E -- '/usr/bin/dpkg' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
dpkg-sig: /usr/bin/dpkg-sig
dpkg: /usr/bin/dpkg
dpkg: /usr/bin/dpkg-deb
dpkg: /usr/bin/dpkg-divert
dpkg: /usr/bin/dpkg-maintscript-helper
dpkg: /usr/bin/dpkg-query
dpkg: /usr/bin/dpkg-split
dpkg: /usr/bin/dpkg-statoverride
dpkg: /usr/bin/dpkg-trigger
dpkg-awk: /usr/bin/dpkg-awk
dpkg-repack: /usr/bin/dpkg-repack
dpkg-dev: /usr/bin/dpkg-architecture
dpkg-dev: /usr/bin/dpkg-buildflags
dpkg-dev: /usr/bin/dpkg-buildpackage
dpkg-dev: /usr/bin/dpkg-checkbuilddeps
dpkg-dev: /usr/bin/dpkg-distaddfile
dpkg-dev: /usr/bin/dpkg-genchanges
dpkg-dev: /usr/bin/dpkg-gencontrol
dpkg-dev: /usr/bin/dpkg-gensymbols
dpkg-dev: /usr/bin/dpkg-mergechangelogs
dpkg-dev: /usr/bin/dpkg-name
dpkg-dev: /usr/bin/dpkg-parsechangelog
dpkg-dev: /usr/bin/dpkg-scanpackages
dpkg-dev: /usr/bin/dpkg-scansources
dpkg-dev: /usr/bin/dpkg-shlibdeps
dpkg-dev: /usr/bin/dpkg-source
dpkg-dev: /usr/bin/dpkg-vendor
devscripts: /usr/bin/dpkg-depcheck
devscripts: /usr/bin/dpkg-genbuilddeps
-------------------------------
-------------------------------
running: ./dlocate /usr/bin/apt
COLUMNS="195"
TEMP=" -v -- '/usr/bin/apt'"
PKGS='([0]="/usr/bin/apt")'
OPTION="DEFAULT"
RE_SEPARATOR="|"
PKGS_REGEXP="/usr/bin/apt"
FILES_REGEXP="(/usr/bin/apt)"
RUNNING: grep -E -- '/usr/bin/apt' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
apt: /usr/bin/apt
apt: /usr/bin/apt-cache
apt: /usr/bin/apt-cdrom
apt: /usr/bin/apt-config
apt: /usr/bin/apt-get
apt: /usr/bin/apt-key
apt: /usr/bin/apt-mark
apt-utils: /usr/bin/apt-extracttemplates
apt-utils: /usr/bin/apt-ftparchive
apt-utils: /usr/bin/apt-sortpkgs
aptitude: /usr/bin/aptitude-curses
apt-show-versions: /usr/bin/apt-show-versions
apt-show-source: /usr/bin/apt-show-source
apt-mirror: /usr/bin/apt-mirror
apt-file: /usr/bin/apt-file
apt-listchanges: /usr/bin/apt-listchanges
aptdaemon: /usr/bin/aptdcon
aptsh: /usr/bin/aptsh
apt-rdepends: /usr/bin/apt-rdepends
apt-src: /usr/bin/apt-src
aptitude-common: /usr/bin/aptitude-create-state-bundle
aptitude-common: /usr/bin/aptitude-run-state-bundle
software-properties-common: /usr/bin/apt-add-repository
apt-clone: /usr/bin/apt-clone
-------------------------------
-------------------------------
running: ./dlocate /tmp/foo/bar/filedoesnotexist
COLUMNS="195"
TEMP=" -v -- '/tmp/foo/bar/filedoesnotexist'"
PKGS='([0]="/tmp/foo/bar/filedoesnotexist")'
OPTION="DEFAULT"
RE_SEPARATOR="|"
PKGS_REGEXP="/tmp/foo/bar/filedoesnotexist"
FILES_REGEXP="(/tmp/foo/bar/filedoesnotexist)"
RUNNING: grep -E -- '/tmp/foo/bar/filedoesnotexist' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
-------------------------------
-------------------------------
running: ./dlocate -S /usr/bin/dlocate
COLUMNS="195"
TEMP=" -v -S -- '/usr/bin/dlocate'"
PKGS='([0]="/usr/bin/dlocate")'
OPTION="-S"
RE_SEPARATOR="|"
PKGS_REGEXP="/usr/bin/dlocate"
FILES_REGEXP="(/usr/bin/dlocate)"
RUNNING: grep -E -- '^([-a-zA-Z0-9_.+]+:|diversion by ).*(/usr/bin/dlocate)' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
dlocate: /usr/bin/dlocate
-------------------------------
-------------------------------
running: ./dlocate -S /usr/sbin/cron
COLUMNS="195"
TEMP=" -v -S -- '/usr/sbin/cron'"
PKGS='([0]="/usr/sbin/cron")'
OPTION="-S"
RE_SEPARATOR="|"
PKGS_REGEXP="/usr/sbin/cron"
FILES_REGEXP="(/usr/sbin/cron)"
RUNNING: grep -E -- '^([-a-zA-Z0-9_.+]+:|diversion by ).*(/usr/sbin/cron)' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
cron: /usr/sbin/cron
-------------------------------
-------------------------------
running: ./dlocate -S /usr/bin/dpkg
COLUMNS="195"
TEMP=" -v -S -- '/usr/bin/dpkg'"
PKGS='([0]="/usr/bin/dpkg")'
OPTION="-S"
RE_SEPARATOR="|"
PKGS_REGEXP="/usr/bin/dpkg"
FILES_REGEXP="(/usr/bin/dpkg)"
RUNNING: grep -E -- '^([-a-zA-Z0-9_.+]+:|diversion by ).*(/usr/bin/dpkg)' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
dpkg-sig: /usr/bin/dpkg-sig
dpkg: /usr/bin/dpkg
dpkg: /usr/bin/dpkg-deb
dpkg: /usr/bin/dpkg-divert
dpkg: /usr/bin/dpkg-maintscript-helper
dpkg: /usr/bin/dpkg-query
dpkg: /usr/bin/dpkg-split
dpkg: /usr/bin/dpkg-statoverride
dpkg: /usr/bin/dpkg-trigger
dpkg-awk: /usr/bin/dpkg-awk
dpkg-repack: /usr/bin/dpkg-repack
dpkg-dev: /usr/bin/dpkg-architecture
dpkg-dev: /usr/bin/dpkg-buildflags
dpkg-dev: /usr/bin/dpkg-buildpackage
dpkg-dev: /usr/bin/dpkg-checkbuilddeps
dpkg-dev: /usr/bin/dpkg-distaddfile
dpkg-dev: /usr/bin/dpkg-genchanges
dpkg-dev: /usr/bin/dpkg-gencontrol
dpkg-dev: /usr/bin/dpkg-gensymbols
dpkg-dev: /usr/bin/dpkg-mergechangelogs
dpkg-dev: /usr/bin/dpkg-name
dpkg-dev: /usr/bin/dpkg-parsechangelog
dpkg-dev: /usr/bin/dpkg-scanpackages
dpkg-dev: /usr/bin/dpkg-scansources
dpkg-dev: /usr/bin/dpkg-shlibdeps
dpkg-dev: /usr/bin/dpkg-source
dpkg-dev: /usr/bin/dpkg-vendor
devscripts: /usr/bin/dpkg-depcheck
devscripts: /usr/bin/dpkg-genbuilddeps
-------------------------------
-------------------------------
running: ./dlocate -S /usr/bin/apt
COLUMNS="195"
TEMP=" -v -S -- '/usr/bin/apt'"
PKGS='([0]="/usr/bin/apt")'
OPTION="-S"
RE_SEPARATOR="|"
PKGS_REGEXP="/usr/bin/apt"
FILES_REGEXP="(/usr/bin/apt)"
RUNNING: grep -E -- '^([-a-zA-Z0-9_.+]+:|diversion by ).*(/usr/bin/apt)' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
apt: /usr/bin/apt
apt: /usr/bin/apt-cache
apt: /usr/bin/apt-cdrom
apt: /usr/bin/apt-config
apt: /usr/bin/apt-get
apt: /usr/bin/apt-key
apt: /usr/bin/apt-mark
apt-utils: /usr/bin/apt-extracttemplates
apt-utils: /usr/bin/apt-ftparchive
apt-utils: /usr/bin/apt-sortpkgs
aptitude: /usr/bin/aptitude-curses
apt-show-versions: /usr/bin/apt-show-versions
apt-show-source: /usr/bin/apt-show-source
apt-mirror: /usr/bin/apt-mirror
apt-file: /usr/bin/apt-file
apt-listchanges: /usr/bin/apt-listchanges
aptdaemon: /usr/bin/aptdcon
aptsh: /usr/bin/aptsh
apt-rdepends: /usr/bin/apt-rdepends
apt-src: /usr/bin/apt-src
aptitude-common: /usr/bin/aptitude-create-state-bundle
aptitude-common: /usr/bin/aptitude-run-state-bundle
software-properties-common: /usr/bin/apt-add-repository
apt-clone: /usr/bin/apt-clone
-------------------------------
-------------------------------
running: ./dlocate -S /tmp/foo/bar/filedoesnotexist
COLUMNS="195"
TEMP=" -v -S -- '/tmp/foo/bar/filedoesnotexist'"
PKGS='([0]="/tmp/foo/bar/filedoesnotexist")'
OPTION="-S"
RE_SEPARATOR="|"
PKGS_REGEXP="/tmp/foo/bar/filedoesnotexist"
FILES_REGEXP="(/tmp/foo/bar/filedoesnotexist)"
RUNNING: grep -E -- '^([-a-zA-Z0-9_.+]+:|diversion by ).*(/tmp/foo/bar/filedoesnotexist)' /var/lib/dlocate/dlocatedb
OUTPUT FILTER: none
-------------------------------
-------------------------------
running: ./dlocate -l dlocate
COLUMNS="195"
TEMP=" -v -l -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="-l"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
RUNNING: grep -E -- 'dlocate' /var/lib/dlocate/dpkg-list
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version Description
+++-==========================================-==========================================-======================================================================================================
ii dlocate 1.02+nmu3:all fast alternative to dpkg -L and dpkg -S
-------------------------------
-------------------------------
running: ./dlocate -l bash
COLUMNS="195"
TEMP=" -v -l -- 'bash'"
PKGS='([0]="bash")'
OPTION="-l"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
RUNNING: grep -E -- 'bash' /var/lib/dlocate/dpkg-list
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version Description
+++-==========================================-==========================================-======================================================================================================
ii bash 4.3-14+b1:amd64 GNU Bourne Again SHell
ii bash-builtins 4.3-14+b1:amd64 Bash loadable builtins - headers & examples
un bash-completion <none>:<none> (no description available)
ii bash-doc 4.3-14:all Documentation and examples for the GNU Bourne Again SHell
un bash-static <none>:<none> (no description available)
ii biabam 0.9.7-7:all bash attachment mailer
ii mybashburn 1.0.2-2:all Burn data and create songs with interactive dialog box
ii python-calabash 0.0.3-3:all Bash-style pipelining syntax for Python generators
ii python-optcomplete 1.2-13:all provide bash-completion for Python programs
ii txt2regex 0.8-4:all A Regular Expression "wizard", all written with bash2 builtins
-------------------------------
-------------------------------
running: ./dlocate -l dpkg
COLUMNS="195"
TEMP=" -v -l -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="-l"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
RUNNING: grep -E -- 'dpkg' /var/lib/dlocate/dpkg-list
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version Description
+++-==========================================-==========================================-======================================================================================================
ii apt-dpkg-ref 5.3.1+nmu1:all APT, Dpkg Quick Reference sheet
ii dlocate 1.02+nmu3:all fast alternative to dpkg -L and dpkg -S
ii dpkg 1.18.7:amd64 Debian package management system
ii dpkg-awk 1.2:all Gawk script to parse /var/lib/dpkg/{status,available} and Packages
un dpkg-cross <none>:<none> (no description available)
ii dpkg-dev 1.18.7:all Debian package development tools
un dpkg-ftp <none>:<none> (no description available)
ii dpkg-repack 1.43:all Debian package archiving tool
ii dpkg-sig 0.13.1+nmu2:all create and verify signatures on .deb-files
un libdpkg-parse-perl <none>:<none> (no description available)
ii libdpkg-perl 1.18.7:all Dpkg perl modules
ii type-handling 0.2.23:amd64 dpkg architecture generation script
-------------------------------
-------------------------------
running: ./dlocate -l apt
COLUMNS="195"
TEMP=" -v -l -- 'apt'"
PKGS='([0]="apt")'
OPTION="-l"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
RUNNING: grep -E -- 'apt' /var/lib/dlocate/dpkg-list
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version Description
+++-==========================================-==========================================-======================================================================================================
ii ale 0.9.0.3-2+b3:amd64 synthetic capture engine and renderer
ii amrnb 7.0.0.2-0.1:amd64 floating-point Adaptive Multi-Rate (AMR) speech codec
ii apt 1.2.13:amd64 commandline package manager
ii apt-cacher-ng 0.9.3.1-1:amd64 caching proxy server for software repositories
ii apt-clone 0.4.1:all Script to create state bundles
ii aptdaemon 1.1.1+bzr982-1:all transaction based package management service
ii apt-doc 1.2.13:all documentation for APT
ii apt-dpkg-ref 5.3.1+nmu1:all APT, Dpkg Quick Reference sheet
ii apt-file 3.0:all search for files within Debian packages (command-line interface)
un apt-forktracer <none>:<none> (no description available)
ii aptitude 0.8.1-1:amd64 terminal-based package manager
ii aptitude-common 0.8.1-1:all architecture independent files for the aptitude package manager
ii aptitude-doc-en 0.8.1-1:all English manual for aptitude, a terminal-based package manager
un aptitude-doc <none>:<none> (no description available)
ii apt-listchanges 2.89:all package change history notification tool
ii apt-mirror 0.5.1-1:all APT sources mirroring tool
un apt-move <none>:<none> (no description available)
ii apt-rdepends 1.3.0-5:all recursively lists package dependencies
ii aptsh 0.0.7+nmu2+b3:amd64 apt interactive shell
ii apt-show-source 0.10+nmu4:all Shows source-package information
ii apt-show-versions 0.22.7:all lists available package versions with distribution
ii apt-src 0.25.1-0.2:all manage Debian source packages
ii apt-transport-debtorrent 0.2.2+b1:amd64 an APT transport for communicating with DebTorrent
ii apt-transport-https 1.2.13:amd64 https download transport for APT
ii apt-utils 1.2.13:amd64 package management related utility programs
un apt-venv <none>:<none> (no description available)
ii apt-xapian-index 0.47+nmu2:all maintenance and search tools for a Xapian index of Debian packages
ii chaplin 1.10-dmo1:amd64 DVD chapter extractor
ii etherboot 5.4.4-9:all Bootstrapping for various network adapters
ii etherboot-doc 5.4.3+dfsg-0.3:all Bootstrapping for various network adapters (documentation)
ii etherboot-qemu 5.4.4-9:all Bootstrapping for various network adapters (qemu)
ii firmware-realtek 20160110-1:all Binary firmware for Realtek wired/wifi/BT adapters
ii imaptool 0.9-17:amd64 tool for creating client-side image maps
ii ksnapshot 4:15.08.0-1:amd64 screen capture tool
ii laptop-detect 0.13.7:amd64 attempt to detect a laptop
un laptop-mode-tools <none>:<none> (no description available)
ii ldaptor-doc 0.0.43+debian1-7:all documentation for Ldaptor
ii libaec0:amd64 0.3.2-1:amd64 Adaptive Entropy Coding library
ii libamrnb3 7.0.0.2-0.1:amd64 floating-point Adaptive Multi-Rate (AMR) speech codec
ii libamrwb3 7.0.0.3-0.0:amd64 Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
un libapt-inst1.5 <none>:<none> (no description available)
ii libapt-inst2.0:amd64 1.2.13:amd64 deb package format runtime library
ii libapt-pkg4.12:amd64 1.0.9.10:amd64 package management runtime library
ii libapt-pkg5.0:amd64 1.2.13:amd64 package management runtime library
ii libapt-pkg-doc 1.2.13:all documentation for APT development
ii libapt-pkg-perl 0.1.29+b5:amd64 Perl interface to libapt-pkg
ii libatk-adaptor:amd64 2.20.1-2:amd64 AT-SPI 2 toolkit bridge
ii libauthen-captcha-perl 1.024-1:all Perl extension for creating captcha's
ii libcaptcha-recaptcha-perl 0.97-1:all perl implementation of the reCAPTCHA API
ii libcapture-tiny-perl 0.42-1:all module to capture STDOUT and STDERR
ii libcgi-emulate-psgi-perl 0.21-1:all PSGI adapter for CGI
ii libclass-adapter-perl 1.07-1:all Perl implementation of the "Adapter" Design Pattern
ii libgd-securityimage-perl 1.73-2:all security image (captcha) generator
ii libio-capture-perl 0.05-3:all Abstract Base Class to build modules to capture output
ii liblavfile-2.1-0:amd64 2:2.1.0-dmo8:amd64 MJPEG capture/editing/replay and MPEG encoding toolset (library)
un liblog-any-adapter-perl <none>:<none> (no description available)
ii libmail-imaptalk-perl 4.03-1:all IMAP client interface with lots of features
ii libmjpegutils-2.1-0:amd64 2:2.1.0-dmo8:amd64 MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii libmpeg2encpp-2.1-0:amd64 2:2.1.0-dmo8:amd64 MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii libmplex2-2.1-0:amd64 2:2.1.0-dmo8:amd64 MJPEG capture/editing/replay and MPEG encoding toolset (library)
ii libncap44 1.9.2-2.1:amd64 network capture library
ii libnet-pcap-perl 0.18-1:amd64 Perl binding to the LBL pcap packet capture library
ii libopencore-amrnb0:amd64 0.1.3-2.1:amd64 Adaptive Multi Rate speech codec - shared library
ii libopencore-amrnb0:i386 0.1.3-2.1:i386 Adaptive Multi Rate speech codec - shared library
ii libopencore-amrnb-dev:amd64 0.1.3-2.1:amd64 Adaptive Multi Rate speech codec - development files
ii libopencore-amrwb0:amd64 0.1.3-2.1:amd64 Adaptive Multi-Rate - Wideband speech codec - shared library
ii libopencore-amrwb0:i386 0.1.3-2.1:i386 Adaptive Multi-Rate - Wideband speech codec - shared library
ii libopencore-amrwb-dev:amd64 0.1.3-2.1:amd64 Adaptive Multi-Rate - Wideband speech codec - development files
ii libpcap0.8:amd64 1.7.4-2:amd64 system interface for user-level packet capture
ii libpcap0.8:i386 1.7.4-2:i386 system interface for user-level packet capture
ii libpsm-infinipath1 3.3+19.g67c0807.open-1:amd64 PSM Messaging library for Intel Truescale adapters
ii libraptor1:amd64 1.4.21-11+b1:amd64 Raptor RDF parser and serializer library
ii libraptor2-0:amd64 2.0.14-1:amd64 Raptor 2 RDF syntax library
ii libsz2:amd64 0.3.2-1:amd64 Adaptive Entropy Coding library - SZIP
ii libtext-table-perl 1.123-1:amd64 Create tables that adapt to alignment requirements
ii libvideo-capture-v4l-perl 0.902-4+b1:amd64 Perl interface to the Video4linux framegrabber interface
ii libwiretap0 1.4.6-1:amd64 network packet capture library -- shared library
ii libwiretap2 1.8.7-1:amd64 network packet capture library -- shared library
ii libwiretap5:amd64 2.0.4+gdd7746e-1:amd64 network packet capture library -- shared library
ii mjpegtools 2:2.1.0-dmo8:amd64 MJPEG video capture/editting/playback MPEG encoding
ii ncaptool 1.9.2-2.1:amd64 network capture tool
un netselect-apt <none>:<none> (no description available)
un packagekit-backend-aptcc <none>:<none> (no description available)
ii packit 1.0-3:amd64 network injection and capture tool
un python3.5-apt <none>:<none> (no description available)
ii python3-apt 1.1.0~beta2:amd64 Python 3 interface to libapt-pkg
ii python3-aptdaemon 1.1.1+bzr982-1:all Python 3 modules for the server and client of aptdaemon
un python3-apt-dbg <none>:<none> (no description available)
ii python-apt 1.1.0~beta2:amd64 Python interface to libapt-pkg
ii python-apt-common 1.1.0~beta2:all Python interface to libapt-pkg (locales)
ii python-aptdaemon 1.1.1+bzr982-1:all Python 2 modules for the server and client of aptdaemon
un python-aptdaemon-gtk <none>:<none> (no description available)
ii python-wrapt 1.8.0-5+b2:amd64 decorators, wrappers and monkey patching. - Python 2.x
ii raptor-utils 1.4.21-11+b1:amd64 Raptor RDF parser and serializer utilities
ii streamer 3.103-4+b1:amd64 television capture tool (images/movies)
ii synaptic 0.83+b1:amd64 Graphical package manager
ii wakeonlan 0.41-11:all Sends 'magic packets' to wake-on-LAN enabled ethernet adapters
ii xdtv 2.4.1~cvs15-0.7:amd64 Video4Linux Stream Capture Viewer and Decoder
ii xnc 5.0.4-4:amd64 X Northern Captain nc/mc-like filemanager for X
-------------------------------
-------------------------------
running: ./dlocate -l packagedoesnotexist
COLUMNS="195"
TEMP=" -v -l -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="-l"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
RUNNING: grep -E -- 'packagedoesnotexist' /var/lib/dlocate/dpkg-list
-------------------------------
-------------------------------
running: ./dlocate -l xmp
COLUMNS="195"
TEMP=" -v -l -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="-l"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
RUNNING: grep -E -- 'xmp' /var/lib/dlocate/dpkg-list
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version Description
+++-==========================================-==========================================-======================================================================================================
ii libnet-xmpp-perl 1.02-5:all XMPP Perl library
ii libxmp4:amd64 4.3.13-1:amd64 module file rendering library
ii libxmpcore-java 5.1.2-3:all Adobe XMP Toolkit for Java
ii xmp 4.0.11-1:amd64 module player supporting AWE32, GUS, and software-mixing
ii xmp-common 3.4.0-3:all common files for xmp and the xmp Audacious plugin
un xmp-player <none>:<none> (no description available)
-------------------------------
-------------------------------
running: ./dlocate -du dlocate
COLUMNS="195"
TEMP=" -v --du -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="--du"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
4 /etc/bash_completion.d/dlocate-completion
4 /etc/cron.daily/dlocate
4 /etc/default/dlocate
16 /usr/bin/dlocate
4 /usr/sbin/dpkg-hold
4 /usr/sbin/dpkg-purge
4 /usr/sbin/dpkg-remove
4 /usr/sbin/dpkg-unhold
4 /usr/sbin/update-dlocatedb
8 /usr/share/doc/dlocate/changelog.gz
4 /usr/share/doc/dlocate/copyright
4 /usr/share/doc/dlocate/README.Debian
4 /usr/share/man/man1/dlocate.1.gz
4 /usr/share/man/man8/dpkg-hold.8.gz
4 /usr/share/man/man8/dpkg-purge.8.gz
4 /usr/share/man/man8/dpkg-remove.8.gz
4 /usr/share/man/man8/dpkg-unhold.8.gz
4 /usr/share/man/man8/update-dlocatedb.8.gz
88 total
-------------------------------
-------------------------------
running: ./dlocate -du bash
COLUMNS="195"
TEMP=" -v --du -- 'bash'"
PKGS='([0]="bash")'
OPTION="--du"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
1016 /bin/bash
4 /etc/bash.bashrc
4 /etc/skel/.bash_logout
4 /etc/skel/.bash_profile
4 /etc/skel/.bashrc
4 /etc/skel/.profile
8 /usr/bin/bashbug
12 /usr/bin/clear_console
4 /usr/share/doc/bash/changelog.Debian.amd64.gz
32 /usr/share/doc/bash/changelog.Debian.gz
92 /usr/share/doc/bash/CHANGES.gz
8 /usr/share/doc/bash/COMPAT.gz
12 /usr/share/doc/bash/copyright
4 /usr/share/doc/bash/inputrc.arrows
4 /usr/share/doc/bash/INTRO.gz
28 /usr/share/doc/bash/NEWS.gz
4 /usr/share/doc/bash/POSIX.gz
4 /usr/share/doc/bash/RBASH
4 /usr/share/doc/bash/README
4 /usr/share/doc/bash/README.abs-guide
4 /usr/share/doc/bash/README.commands.gz
4 /usr/share/doc/bash/README.Debian.gz
4 /usr/share/lintian/overrides/bash
4 /usr/share/locale/af/LC_MESSAGES/bash.mo
232 /usr/share/locale/bg/LC_MESSAGES/bash.mo
12 /usr/share/locale/ca/LC_MESSAGES/bash.mo
172 /usr/share/locale/cs/LC_MESSAGES/bash.mo
100 /usr/share/locale/da/LC_MESSAGES/bash.mo
88 /usr/share/locale/de/LC_MESSAGES/bash.mo
40 /usr/share/locale/el/LC_MESSAGES/bash.mo
164 /usr/share/locale/en@boldquot/LC_MESSAGES/bash.mo
164 /usr/share/locale/en@quot/LC_MESSAGES/bash.mo
160 /usr/share/locale/eo/LC_MESSAGES/bash.mo
120 /usr/share/locale/es/LC_MESSAGES/bash.mo
12 /usr/share/locale/et/LC_MESSAGES/bash.mo
104 /usr/share/locale/fi/LC_MESSAGES/bash.mo
124 /usr/share/locale/fr/LC_MESSAGES/bash.mo
60 /usr/share/locale/ga/LC_MESSAGES/bash.mo
64 /usr/share/locale/gl/LC_MESSAGES/bash.mo
36 /usr/share/locale/hr/LC_MESSAGES/bash.mo
112 /usr/share/locale/hu/LC_MESSAGES/bash.mo
108 /usr/share/locale/id/LC_MESSAGES/bash.mo
120 /usr/share/locale/it/LC_MESSAGES/bash.mo
132 /usr/share/locale/ja/LC_MESSAGES/bash.mo
32 /usr/share/locale/lt/LC_MESSAGES/bash.mo
168 /usr/share/locale/nl/LC_MESSAGES/bash.mo
172 /usr/share/locale/pl/LC_MESSAGES/bash.mo
12 /usr/share/locale/pt_BR/LC_MESSAGES/bash.mo
12 /usr/share/locale/ro/LC_MESSAGES/bash.mo
12 /usr/share/locale/ru/LC_MESSAGES/bash.mo
120 /usr/share/locale/sk/LC_MESSAGES/bash.mo
116 /usr/share/locale/sl/LC_MESSAGES/bash.mo
216 /usr/share/locale/sr/LC_MESSAGES/bash.mo
164 /usr/share/locale/sv/LC_MESSAGES/bash.mo
88 /usr/share/locale/tr/LC_MESSAGES/bash.mo
220 /usr/share/locale/uk/LC_MESSAGES/bash.mo
176 /usr/share/locale/vi/LC_MESSAGES/bash.mo
100 /usr/share/locale/zh_CN/LC_MESSAGES/bash.mo
8 /usr/share/locale/zh_TW/LC_MESSAGES/bash.mo
84 /usr/share/man/man1/bash.1.gz
4 /usr/share/man/man1/bashbug.1.gz
4 /usr/share/man/man1/clear_console.1.gz
4 /usr/share/man/man1/rbash.1.gz
4 /usr/share/man/man7/bash-builtins.7.gz
4 /usr/share/menu/bash
5116 total
-------------------------------
-------------------------------
running: ./dlocate -du dpkg
COLUMNS="195"
TEMP=" -v --du -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="--du"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
4 /etc/alternatives/README
4 /etc/cron.daily/dpkg
4 /etc/dpkg/dpkg.cfg
4 /etc/logrotate.d/dpkg
32 /sbin/start-stop-daemon
288 /usr/bin/dpkg
144 /usr/bin/dpkg-deb
140 /usr/bin/dpkg-divert
20 /usr/bin/dpkg-maintscript-helper
148 /usr/bin/dpkg-query
116 /usr/bin/dpkg-split
64 /usr/bin/dpkg-statoverride
68 /usr/bin/dpkg-trigger
48 /usr/bin/update-alternatives
4 /usr/share/doc/dpkg/AUTHORS
168 /usr/share/doc/dpkg/changelog.Debian.gz
696 /usr/share/doc/dpkg/changelog.gz
8 /usr/share/doc/dpkg/copyright
4 /usr/share/doc/dpkg/README.feature-removal-schedule.gz
4 /usr/share/doc/dpkg/THANKS.gz
4 /usr/share/doc/dpkg/usertags.gz
4 /usr/share/dpkg/abitable
4 /usr/share/dpkg/cputable
4 /usr/share/dpkg/ostable
4 /usr/share/dpkg/triplettable
4 /usr/share/lintian/overrides/dpkg
64 /usr/share/locale/ast/LC_MESSAGES/dpkg.mo
4 /usr/share/locale/bs/LC_MESSAGES/dpkg.mo
156 /usr/share/locale/ca/LC_MESSAGES/dpkg.mo
144 /usr/share/locale/cs/LC_MESSAGES/dpkg.mo
140 /usr/share/locale/da/LC_MESSAGES/dpkg.mo
156 /usr/share/locale/de/LC_MESSAGES/dpkg.mo
88 /usr/share/locale/dz/LC_MESSAGES/dpkg.mo
76 /usr/share/locale/el/LC_MESSAGES/dpkg.mo
140 /usr/share/locale/eo/LC_MESSAGES/dpkg.mo
152 /usr/share/locale/es/LC_MESSAGES/dpkg.mo
24 /usr/share/locale/et/LC_MESSAGES/dpkg.mo
148 /usr/share/locale/eu/LC_MESSAGES/dpkg.mo
160 /usr/share/locale/fr/LC_MESSAGES/dpkg.mo
56 /usr/share/locale/gl/LC_MESSAGES/dpkg.mo
44 /usr/share/locale/hu/LC_MESSAGES/dpkg.mo
76 /usr/share/locale/id/LC_MESSAGES/dpkg.mo
148 /usr/share/locale/it/LC_MESSAGES/dpkg.mo
176 /usr/share/locale/ja/LC_MESSAGES/dpkg.mo
76 /usr/share/locale/km/LC_MESSAGES/dpkg.mo
88 /usr/share/locale/ko/LC_MESSAGES/dpkg.mo
8 /usr/share/locale/ku/LC_MESSAGES/dpkg.mo
36 /usr/share/locale/lt/LC_MESSAGES/dpkg.mo
68 /usr/share/locale/mr/LC_MESSAGES/dpkg.mo
76 /usr/share/locale/nb/LC_MESSAGES/dpkg.mo
68 /usr/share/locale/ne/LC_MESSAGES/dpkg.mo
156 /usr/share/locale/nl/LC_MESSAGES/dpkg.mo
40 /usr/share/locale/nn/LC_MESSAGES/dpkg.mo
12 /usr/share/locale/pa/LC_MESSAGES/dpkg.mo
148 /usr/share/locale/pl/LC_MESSAGES/dpkg.mo
56 /usr/share/locale/pt_BR/LC_MESSAGES/dpkg.mo
156 /usr/share/locale/pt/LC_MESSAGES/dpkg.mo
84 /usr/share/locale/ro/LC_MESSAGES/dpkg.mo
192 /usr/share/locale/ru/LC_MESSAGES/dpkg.mo
128 /usr/share/locale/sk/LC_MESSAGES/dpkg.mo
140 /usr/share/locale/sv/LC_MESSAGES/dpkg.mo
216 /usr/share/locale/th/LC_MESSAGES/dpkg.mo
40 /usr/share/locale/tl/LC_MESSAGES/dpkg.mo
156 /usr/share/locale/tr/LC_MESSAGES/dpkg.mo
172 /usr/share/locale/vi/LC_MESSAGES/dpkg.mo
144 /usr/share/locale/zh_CN/LC_MESSAGES/dpkg.mo
116 /usr/share/locale/zh_TW/LC_MESSAGES/dpkg.mo
16 /usr/share/man/de/man1/dpkg.1.gz
8 /usr/share/man/de/man1/dpkg-deb.1.gz
4 /usr/share/man/de/man1/dpkg-divert.1.gz
8 /usr/share/man/de/man1/dpkg-maintscript-helper.1.gz
8 /usr/share/man/de/man1/dpkg-query.1.gz
4 /usr/share/man/de/man1/dpkg-split.1.gz
4 /usr/share/man/de/man1/dpkg-statoverride.1.gz
4 /usr/share/man/de/man1/dpkg-trigger.1.gz
8 /usr/share/man/de/man1/update-alternatives.1.gz
4 /usr/share/man/de/man5/dpkg.cfg.5.gz
8 /usr/share/man/de/man8/start-stop-daemon.8.gz
4 /usr/share/man/es/man1/dpkg-divert.1.gz
4 /usr/share/man/es/man1/dpkg-split.1.gz
4 /usr/share/man/es/man1/dpkg-trigger.1.gz
8 /usr/share/man/es/man1/update-alternatives.1.gz
4 /usr/share/man/es/man5/dpkg.cfg.5.gz
8 /usr/share/man/es/man8/start-stop-daemon.8.gz
8 /usr/share/man/fr/man1/dpkg-deb.1.gz
4 /usr/share/man/fr/man1/dpkg-divert.1.gz
8 /usr/share/man/fr/man1/dpkg-maintscript-helper.1.gz
8 /usr/share/man/fr/man1/dpkg-query.1.gz
4 /usr/share/man/fr/man1/dpkg-split.1.gz
4 /usr/share/man/fr/man1/dpkg-statoverride.1.gz
4 /usr/share/man/fr/man1/dpkg-trigger.1.gz
8 /usr/share/man/fr/man1/update-alternatives.1.gz
4 /usr/share/man/fr/man5/dpkg.cfg.5.gz
8 /usr/share/man/fr/man8/start-stop-daemon.8.gz
4 /usr/share/man/hu/man5/dpkg.cfg.5.gz
8 /usr/share/man/it/man1/dpkg-deb.1.gz
8 /usr/share/man/it/man1/dpkg-maintscript-helper.1.gz
8 /usr/share/man/it/man1/dpkg-query.1.gz
4 /usr/share/man/it/man1/dpkg-split.1.gz
4 /usr/share/man/it/man1/dpkg-statoverride.1.gz
8 /usr/share/man/it/man1/update-alternatives.1.gz
4 /usr/share/man/it/man5/dpkg.cfg.5.gz
8 /usr/share/man/it/man8/start-stop-daemon.8.gz
4 /usr/share/man/ja/man1/dpkg-divert.1.gz
4 /usr/share/man/ja/man1/dpkg-split.1.gz
4 /usr/share/man/ja/man1/dpkg-trigger.1.gz
8 /usr/share/man/ja/man1/update-alternatives.1.gz
4 /usr/share/man/ja/man5/dpkg.cfg.5.gz
8 /usr/share/man/ja/man8/start-stop-daemon.8.gz
16 /usr/share/man/man1/dpkg.1.gz
4 /usr/share/man/man1/dpkg-deb.1.gz
4 /usr/share/man/man1/dpkg-divert.1.gz
4 /usr/share/man/man1/dpkg-maintscript-helper.1.gz
8 /usr/share/man/man1/dpkg-query.1.gz
4 /usr/share/man/man1/dpkg-split.1.gz
4 /usr/share/man/man1/dpkg-statoverride.1.gz
4 /usr/share/man/man1/dpkg-trigger.1.gz
8 /usr/share/man/man1/update-alternatives.1.gz
4 /usr/share/man/man5/dpkg.cfg.5.gz
8 /usr/share/man/man8/start-stop-daemon.8.gz
16 /usr/share/man/nl/man1/dpkg.1.gz
8 /usr/share/man/nl/man1/dpkg-deb.1.gz
4 /usr/share/man/nl/man1/dpkg-divert.1.gz
8 /usr/share/man/nl/man1/dpkg-maintscript-helper.1.gz
8 /usr/share/man/nl/man1/dpkg-query.1.gz
4 /usr/share/man/nl/man1/dpkg-split.1.gz
4 /usr/share/man/nl/man1/dpkg-statoverride.1.gz
4 /usr/share/man/nl/man1/dpkg-trigger.1.gz
8 /usr/share/man/nl/man1/update-alternatives.1.gz
4 /usr/share/man/nl/man5/dpkg.cfg.5.gz
8 /usr/share/man/nl/man8/start-stop-daemon.8.gz
4 /usr/share/man/pl/man1/dpkg-divert.1.gz
4 /usr/share/man/pl/man1/dpkg-split.1.gz
4 /usr/share/man/pl/man1/dpkg-trigger.1.gz
8 /usr/share/man/pl/man1/update-alternatives.1.gz
4 /usr/share/man/pl/man5/dpkg.cfg.5.gz
8 /usr/share/man/pl/man8/start-stop-daemon.8.gz
8 /usr/share/man/sv/man1/dpkg-deb.1.gz
4 /usr/share/man/sv/man1/dpkg-divert.1.gz
8 /usr/share/man/sv/man1/dpkg-maintscript-helper.1.gz
8 /usr/share/man/sv/man1/dpkg-query.1.gz
4 /usr/share/man/sv/man1/dpkg-split.1.gz
4 /usr/share/man/sv/man1/dpkg-statoverride.1.gz
4 /usr/share/man/sv/man1/dpkg-trigger.1.gz
8 /usr/share/man/sv/man1/update-alternatives.1.gz
4 /usr/share/man/sv/man5/dpkg.cfg.5.gz
8 /usr/share/man/sv/man8/start-stop-daemon.8.gz
6812 total
-------------------------------
-------------------------------
running: ./dlocate -du apt
COLUMNS="195"
TEMP=" -v --du -- 'apt'"
PKGS='([0]="apt")'
OPTION="--du"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
4 /etc/apt/apt.conf.d/01autoremove
4 /etc/cron.daily/apt-compat
4 /etc/kernel/postinst.d/apt-auto-removal
4 /etc/logrotate.d/apt
4 /lib/systemd/system/apt-daily.service
4 /lib/systemd/system/apt-daily.timer
16 /usr/bin/apt
80 /usr/bin/apt-cache
24 /usr/bin/apt-cdrom
20 /usr/bin/apt-config
44 /usr/bin/apt-get
24 /usr/bin/apt-key
44 /usr/bin/apt-mark
28 /usr/lib/apt/apt-helper
16 /usr/lib/apt/apt.systemd.daily
28 /usr/lib/apt/methods/cdrom
20 /usr/lib/apt/methods/copy
20 /usr/lib/apt/methods/file
60 /usr/lib/apt/methods/ftp
52 /usr/lib/apt/methods/gpgv
80 /usr/lib/apt/methods/http
100 /usr/lib/apt/methods/mirror
44 /usr/lib/apt/methods/rred
32 /usr/lib/apt/methods/rsh
20 /usr/lib/apt/methods/store
4 /usr/lib/dpkg/methods/apt/desc.apt
4 /usr/lib/dpkg/methods/apt/install
4 /usr/lib/dpkg/methods/apt/names
8 /usr/lib/dpkg/methods/apt/setup
4 /usr/lib/dpkg/methods/apt/update
332 /usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0
8 /usr/share/bash-completion/completions/apt
4 /usr/share/bug/apt/script
124 /usr/share/doc/apt/changelog.gz
4 /usr/share/doc/apt/copyright
4 /usr/share/doc/apt/examples/apt.conf
4 /usr/share/doc/apt/examples/apt-https-method-example.conf.gz
8 /usr/share/doc/apt/examples/configure-index.gz
4 /usr/share/doc/apt/examples/sources.list
4 /usr/share/doc/apt/NEWS.Debian.gz
4 /usr/share/lintian/overrides/apt
20 /usr/share/locale/ar/LC_MESSAGES/apt.mo
28 /usr/share/locale/ast/LC_MESSAGES/apt.mo
44 /usr/share/locale/bg/LC_MESSAGES/apt.mo
8 /usr/share/locale/bs/LC_MESSAGES/apt.mo
32 /usr/share/locale/ca/LC_MESSAGES/apt.mo
40 /usr/share/locale/cs/LC_MESSAGES/apt.mo
16 /usr/share/locale/cy/LC_MESSAGES/apt.mo
36 /usr/share/locale/da/LC_MESSAGES/apt.mo
40 /usr/share/locale/de/LC_MESSAGES/apt.mo
44 /usr/share/locale/dz/LC_MESSAGES/apt.mo
36 /usr/share/locale/el/LC_MESSAGES/apt.mo
48 /usr/share/locale/es/LC_MESSAGES/apt.mo
24 /usr/share/locale/eu/LC_MESSAGES/apt.mo
24 /usr/share/locale/fi/LC_MESSAGES/apt.mo
36 /usr/share/locale/fr/LC_MESSAGES/apt.mo
32 /usr/share/locale/gl/LC_MESSAGES/apt.mo
48 /usr/share/locale/hu/LC_MESSAGES/apt.mo
40 /usr/share/locale/it/LC_MESSAGES/apt.mo
52 /usr/share/locale/ja/LC_MESSAGES/apt.mo
40 /usr/share/locale/km/LC_MESSAGES/apt.mo
32 /usr/share/locale/ko/LC_MESSAGES/apt.mo
8 /usr/share/locale/ku/LC_MESSAGES/apt.mo
16 /usr/share/locale/lt/LC_MESSAGES/apt.mo
36 /usr/share/locale/mr/LC_MESSAGES/apt.mo
28 /usr/share/locale/nb/LC_MESSAGES/apt.mo
32 /usr/share/locale/ne/LC_MESSAGES/apt.mo
48 /usr/share/locale/nl/LC_MESSAGES/apt.mo
20 /usr/share/locale/nn/LC_MESSAGES/apt.mo
32 /usr/share/locale/pl/LC_MESSAGES/apt.mo
24 /usr/share/locale/pt_BR/LC_MESSAGES/apt.mo
32 /usr/share/locale/pt/LC_MESSAGES/apt.mo
24 /usr/share/locale/ro/LC_MESSAGES/apt.mo
60 /usr/share/locale/ru/LC_MESSAGES/apt.mo
32 /usr/share/locale/sk/LC_MESSAGES/apt.mo
32 /usr/share/locale/sl/LC_MESSAGES/apt.mo
40 /usr/share/locale/sv/LC_MESSAGES/apt.mo
56 /usr/share/locale/th/LC_MESSAGES/apt.mo
24 /usr/share/locale/tl/LC_MESSAGES/apt.mo
40 /usr/share/locale/tr/LC_MESSAGES/apt.mo
40 /usr/share/locale/uk/LC_MESSAGES/apt.mo
40 /usr/share/locale/vi/LC_MESSAGES/apt.mo
44 /usr/share/locale/zh_CN/LC_MESSAGES/apt.mo
24 /usr/share/locale/zh_TW/LC_MESSAGES/apt.mo
20 /usr/share/man/de/man5/apt.conf.5.gz
8 /usr/share/man/de/man5/apt_preferences.5.gz
8 /usr/share/man/de/man8/apt-cache.8.gz
4 /usr/share/man/de/man8/apt-cdrom.8.gz
4 /usr/share/man/de/man8/apt-config.8.gz
12 /usr/share/man/de/man8/apt-get.8.gz
4 /usr/share/man/de/man8/apt-key.8.gz
20 /usr/share/man/es/man5/apt.conf.5.gz
8 /usr/share/man/es/man5/apt_preferences.5.gz
8 /usr/share/man/es/man8/apt-cache.8.gz
4 /usr/share/man/es/man8/apt-cdrom.8.gz
4 /usr/share/man/es/man8/apt-config.8.gz
4 /usr/share/man/es/man8/apt-key.8.gz
20 /usr/share/man/fr/man5/apt.conf.5.gz
8 /usr/share/man/fr/man5/apt_preferences.5.gz
8 /usr/share/man/fr/man8/apt-cache.8.gz
4 /usr/share/man/fr/man8/apt-cdrom.8.gz
4 /usr/share/man/fr/man8/apt-config.8.gz
12 /usr/share/man/fr/man8/apt-get.8.gz
4 /usr/share/man/fr/man8/apt-key.8.gz
20 /usr/share/man/it/man5/apt.conf.5.gz
8 /usr/share/man/it/man5/apt_preferences.5.gz
8 /usr/share/man/it/man5/sources.list.5.gz
4 /usr/share/man/it/man8/apt.8.gz
8 /usr/share/man/it/man8/apt-cache.8.gz
4 /usr/share/man/it/man8/apt-cdrom.8.gz
4 /usr/share/man/it/man8/apt-config.8.gz
12 /usr/share/man/it/man8/apt-get.8.gz
4 /usr/share/man/it/man8/apt-key.8.gz
4 /usr/share/man/it/man8/apt-mark.8.gz
4 /usr/share/man/it/man8/apt-secure.8.gz
20 /usr/share/man/ja/man5/apt.conf.5.gz
8 /usr/share/man/ja/man5/apt_preferences.5.gz
12 /usr/share/man/ja/man5/sources.list.5.gz
4 /usr/share/man/ja/man8/apt.8.gz
8 /usr/share/man/ja/man8/apt-cache.8.gz
4 /usr/share/man/ja/man8/apt-cdrom.8.gz
4 /usr/share/man/ja/man8/apt-config.8.gz
12 /usr/share/man/ja/man8/apt-get.8.gz
4 /usr/share/man/ja/man8/apt-key.8.gz
4 /usr/share/man/ja/man8/apt-mark.8.gz
8 /usr/share/man/ja/man8/apt-secure.8.gz
20 /usr/share/man/man5/apt.conf.5.gz
8 /usr/share/man/man5/apt_preferences.5.gz
8 /usr/share/man/man5/sources.list.5.gz
4 /usr/share/man/man8/apt.8.gz
8 /usr/share/man/man8/apt-cache.8.gz
4 /usr/share/man/man8/apt-cdrom.8.gz
4 /usr/share/man/man8/apt-config.8.gz
12 /usr/share/man/man8/apt-get.8.gz
4 /usr/share/man/man8/apt-key.8.gz
4 /usr/share/man/man8/apt-mark.8.gz
4 /usr/share/man/man8/apt-secure.8.gz
20 /usr/share/man/nl/man5/apt.conf.5.gz
8 /usr/share/man/nl/man5/apt_preferences.5.gz
12 /usr/share/man/nl/man5/sources.list.5.gz
4 /usr/share/man/nl/man8/apt.8.gz
8 /usr/share/man/nl/man8/apt-cache.8.gz
4 /usr/share/man/nl/man8/apt-cdrom.8.gz
4 /usr/share/man/nl/man8/apt-config.8.gz
12 /usr/share/man/nl/man8/apt-get.8.gz
4 /usr/share/man/nl/man8/apt-key.8.gz
4 /usr/share/man/nl/man8/apt-mark.8.gz
8 /usr/share/man/nl/man8/apt-secure.8.gz
8 /usr/share/man/pl/man5/apt_preferences.5.gz
8 /usr/share/man/pl/man8/apt-cache.8.gz
4 /usr/share/man/pl/man8/apt-cdrom.8.gz
4 /usr/share/man/pl/man8/apt-config.8.gz
4 /usr/share/man/pl/man8/apt-key.8.gz
20 /usr/share/man/pt/man5/apt.conf.5.gz
8 /usr/share/man/pt/man5/apt_preferences.5.gz
8 /usr/share/man/pt/man8/apt-cache.8.gz
4 /usr/share/man/pt/man8/apt-cdrom.8.gz
4 /usr/share/man/pt/man8/apt-config.8.gz
12 /usr/share/man/pt/man8/apt-get.8.gz
4 /usr/share/man/pt/man8/apt-key.8.gz
3344 total
-------------------------------
-------------------------------
running: ./dlocate -du packagedoesnotexist
COLUMNS="195"
TEMP=" -v --du -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="--du"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
Package packagedoesnotexist is not installed or /var/lib/dpkg/info/packagedoesnotexist.list is empty.
-------------------------------
-------------------------------
running: ./dlocate -du xmp
COLUMNS="195"
TEMP=" -v --du -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="--du"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
4 /etc/xmp/modules.conf
4 /etc/xmp/xmp.conf
52 /usr/bin/xmp
4 /usr/lib/mime/packages/xmp
8 /usr/share/doc/xmp/changelog.Debian.gz
4 /usr/share/doc/xmp/changelog.gz
4 /usr/share/doc/xmp/copyright
4 /usr/share/doc/xmp/CREDITS
4 /usr/share/doc/xmp/README
4 /usr/share/man/man1/xmp.1.gz
92 total
-------------------------------
-------------------------------
running: ./dlocate -conf dlocate
COLUMNS="195"
TEMP=" -v --conf -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="--conf"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
/etc/default/dlocate
/etc/bash_completion.d/dlocate-completion
/etc/cron.daily/dlocate
-------------------------------
-------------------------------
running: ./dlocate -conf bash
COLUMNS="195"
TEMP=" -v --conf -- 'bash'"
PKGS='([0]="bash")'
OPTION="--conf"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
/etc/bash.bashrc
/etc/skel/.bash_logout
/etc/skel/.bashrc
/etc/skel/.profile
-------------------------------
-------------------------------
running: ./dlocate -conf dpkg
COLUMNS="195"
TEMP=" -v --conf -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="--conf"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
/etc/alternatives/README
/etc/cron.daily/dpkg
/etc/dpkg/dpkg.cfg
/etc/logrotate.d/dpkg
-------------------------------
-------------------------------
running: ./dlocate -conf apt
COLUMNS="195"
TEMP=" -v --conf -- 'apt'"
PKGS='([0]="apt")'
OPTION="--conf"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
/etc/apt/apt.conf.d/01autoremove
/etc/cron.daily/apt-compat
/etc/kernel/postinst.d/apt-auto-removal
/etc/logrotate.d/apt
-------------------------------
-------------------------------
running: ./dlocate -conf packagedoesnotexist
COLUMNS="195"
TEMP=" -v --conf -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="--conf"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
Package packagedoesnotexist is not installed or has no conffiles.
-------------------------------
-------------------------------
running: ./dlocate -conf xmp
COLUMNS="195"
TEMP=" -v --conf -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="--conf"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
/etc/xmp/modules.conf
/etc/xmp/xmp.conf
-------------------------------
-------------------------------
running: ./dlocate -lsconf dlocate
COLUMNS="195"
TEMP=" -v --lsconf -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="--lsconf"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
-rwxr-xr-x 1 root root 581 Dec 30 2012 /etc/bash_completion.d/dlocate-completion*
-rwxr-xr-x 1 root root 1019 Jun 20 15:52 /etc/cron.daily/dlocate*
-rw-r--r-- 1 root root 226 Jun 3 2009 /etc/default/dlocate
-------------------------------
-------------------------------
running: ./dlocate -lsconf bash
COLUMNS="195"
TEMP=" -v --lsconf -- 'bash'"
PKGS='([0]="bash")'
OPTION="--lsconf"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
-rw-r--r-- 1 root root 508 May 9 2004 /etc/bash.bashrc
-rw-r--r-- 1 root root 223 Jun 9 2010 /etc/skel/.bash_logout
-rw-r--r-- 1 root root 1347 Jun 9 2010 /etc/skel/.bashrc
-rw-r--r-- 1 root root 675 Apr 20 2008 /etc/skel/.profile
-------------------------------
-------------------------------
running: ./dlocate -lsconf dpkg
COLUMNS="195"
TEMP=" -v --lsconf -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="--lsconf"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
-rw-r--r-- 1 root root 100 Jul 20 2004 /etc/alternatives/README
-rwxr-xr-x 1 root root 1597 Jun 6 2014 /etc/cron.daily/dpkg*
-rw-r--r-- 1 root root 477 Jun 17 2005 /etc/dpkg/dpkg.cfg
-rw-r--r-- 1 root root 234 Jun 12 12:49 /etc/logrotate.d/dpkg
-------------------------------
-------------------------------
running: ./dlocate -lsconf apt
COLUMNS="195"
TEMP=" -v --lsconf -- 'apt'"
PKGS='([0]="apt")'
OPTION="--lsconf"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
-rw-r--r-- 1 root root 769 Nov 27 2015 /etc/apt/apt.conf.d/01autoremove
-rwxr-xr-x 1 root root 920 Apr 6 04:24 /etc/cron.daily/apt-compat*
-rwxr-xr-x 1 root root 2704 Dec 15 2015 /etc/kernel/postinst.d/apt-auto-removal*
-rw-r--r-- 1 root root 177 Jun 12 12:49 /etc/logrotate.d/apt
-------------------------------
-------------------------------
running: ./dlocate -lsconf packagedoesnotexist
COLUMNS="195"
TEMP=" -v --lsconf -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="--lsconf"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
Package packagedoesnotexist is not installed or has no conffiles.
-------------------------------
-------------------------------
running: ./dlocate -lsconf xmp
COLUMNS="195"
TEMP=" -v --lsconf -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="--lsconf"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
-rw-r--r-- 1 root root 1174 Dec 2 2013 /etc/xmp/modules.conf
-rw-r--r-- 1 root root 2970 Sep 29 2014 /etc/xmp/xmp.conf
-------------------------------
-------------------------------
running: ./dlocate -md5sum dlocate
COLUMNS="195"
TEMP=" -v --md5sum -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="--md5sum"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
94a6a8b07e075d0ac6dcb8c30975aa02 usr/bin/dlocate
c6fd2cc6a2ed1e5c9aa42d04e219bad4 usr/sbin/dpkg-hold
1b2c9b3b9a8c8197bb71f326dd42d3b2 usr/sbin/dpkg-purge
9e9f1afd4ea2002c3301bbdc041b0a95 usr/sbin/dpkg-remove
89088e7577f4e4dbfd1ff248e8b1f67d usr/sbin/dpkg-unhold
05a03db74e420755ddce99e11f903bef usr/sbin/update-dlocatedb
df2b44f95ce2d2b721408d44abeb36ed usr/share/doc/dlocate/README.Debian
74cfdff56e2ef87f38961f9eed89361c usr/share/doc/dlocate/changelog.gz
e56ac51480ec0fc86ca9146e8fb13984 usr/share/doc/dlocate/copyright
d5b23f7f11e1545922d9642935bea72a usr/share/man/man1/dlocate.1.gz
9e3afe5454f1707e0c7b4a907495f733 usr/share/man/man8/dpkg-hold.8.gz
8961488bd61dcd5db8c49bf8c99e8584 usr/share/man/man8/dpkg-purge.8.gz
596c0316832bb42b5fdf45ddebcee96c usr/share/man/man8/dpkg-remove.8.gz
a347b796998ec324160e5c0d34231cac usr/share/man/man8/dpkg-unhold.8.gz
b04830983f5154688a683bb05b628407 usr/share/man/man8/update-dlocatedb.8.gz
-------------------------------
-------------------------------
running: ./dlocate -md5sum bash
COLUMNS="195"
TEMP=" -v --md5sum -- 'bash'"
PKGS='([0]="bash")'
OPTION="--md5sum"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
4cabfa9e8fedb10394dee8080fad603b bin/bash
86838bd2f744102eca8496d391209fc7 usr/bin/bashbug
4a3fb08b4e426571c9e38d8b6bdac44b usr/bin/clear_console
af409121d0a07c9aae6060400ecab1e7 usr/share/doc/bash/CHANGES.gz
53f5fcc072d73bd3a9c3730961492373 usr/share/doc/bash/COMPAT.gz
ab78b78be766692463cb112b88d5a74f usr/share/doc/bash/INTRO.gz
9df11d534062836a58f82ddad0df6c72 usr/share/doc/bash/NEWS.gz
edea2eee495d96911e81e164ddc891ad usr/share/doc/bash/POSIX.gz
632b3fbdfd170709a7e4c3724624bf33 usr/share/doc/bash/RBASH
e800272ac95eade956214be4eacba8cf usr/share/doc/bash/README
6bd7de8b98911613a536e83867e9b490 usr/share/doc/bash/README.Debian.gz
5dac7b9b6332d9845e315cf8fd50ea89 usr/share/doc/bash/README.abs-guide
007dea9b8141f038c602b23f78509e34 usr/share/doc/bash/README.commands.gz
813c1de0d606b213fd6daba1541017b2 usr/share/doc/bash/changelog.Debian.amd64.gz
63501aeb50f4ee5dc8b9d785b1714426 usr/share/doc/bash/changelog.Debian.gz
9632d707e9eca8b3ba2b1a98c1c3fdce usr/share/doc/bash/copyright
244319c9dd88c980910aacd76477b8d9 usr/share/doc/bash/inputrc.arrows
4574de6676d74019761f409168aa8e01 usr/share/lintian/overrides/bash
db933979cd05c247d57d02c6bf3eb293 usr/share/locale/af/LC_MESSAGES/bash.mo
be5607cf2dd215fb6bcb13a4d1e70d08 usr/share/locale/bg/LC_MESSAGES/bash.mo
b9587d9cc22311996bf0ca42df6ab4a4 usr/share/locale/ca/LC_MESSAGES/bash.mo
54152e20670db39ff0f90b37e4f560d1 usr/share/locale/cs/LC_MESSAGES/bash.mo
178f7ce754adf6f2492219d3309601b7 usr/share/locale/da/LC_MESSAGES/bash.mo
a532cf0257b74aedc7ebfd3359efdbe8 usr/share/locale/de/LC_MESSAGES/bash.mo
cc24df3d16a5f80c0be9e656cf1b0c3b usr/share/locale/el/LC_MESSAGES/bash.mo
2a461c80f09a2c42859df7503acb6f73 usr/share/locale/en@boldquot/LC_MESSAGES/bash.mo
604ff9aad4a940ddaadbba9a09a320c9 usr/share/locale/en@quot/LC_MESSAGES/bash.mo
eca2225bbfd4b11b94647bd763ef108e usr/share/locale/eo/LC_MESSAGES/bash.mo
8a1aa99cc1dda6da4ecb3e823320b9c7 usr/share/locale/es/LC_MESSAGES/bash.mo
8436957deca317e407acab3b1034ecbd usr/share/locale/et/LC_MESSAGES/bash.mo
1f7aac99cb0d2c687f3cf0044f9476ec usr/share/locale/fi/LC_MESSAGES/bash.mo
821a6a58b52c6216119d8acfafd3da26 usr/share/locale/fr/LC_MESSAGES/bash.mo
4b5605bc550e90f29f4d702d6c372019 usr/share/locale/ga/LC_MESSAGES/bash.mo
4e49bfba20bb9508fed3e83dee371c6f usr/share/locale/gl/LC_MESSAGES/bash.mo
a4d6e7d66e1184660466ea26a03879ca usr/share/locale/hr/LC_MESSAGES/bash.mo
e7aa615b30413e3b5227afb8371a8c7d usr/share/locale/hu/LC_MESSAGES/bash.mo
82c3279aa56a9eab1e43b26b7387f679 usr/share/locale/id/LC_MESSAGES/bash.mo
fb08b3dd6db049ab3cae993f3d5935fd usr/share/locale/it/LC_MESSAGES/bash.mo
2cbf395d0a926c6cfb45f81022a2338d usr/share/locale/ja/LC_MESSAGES/bash.mo
00e2c790527e6e5a025d55489d041b00 usr/share/locale/lt/LC_MESSAGES/bash.mo
df6e277f1c17eb734948da4d105b96f3 usr/share/locale/nl/LC_MESSAGES/bash.mo
21e74e35229ab63612e210ab3334681b usr/share/locale/pl/LC_MESSAGES/bash.mo
ae8e1fa5a7c690b3cbce96a9106ae32f usr/share/locale/pt_BR/LC_MESSAGES/bash.mo
45e14c90ef660b04a62f6389725b4599 usr/share/locale/ro/LC_MESSAGES/bash.mo
5e0c1d9ac55507d6be79c38f39afa110 usr/share/locale/ru/LC_MESSAGES/bash.mo
878384f461926ad41112eabc0f15961e usr/share/locale/sk/LC_MESSAGES/bash.mo
84e7c4f8b0f3a5f17dff4275d52d2def usr/share/locale/sl/LC_MESSAGES/bash.mo
bdd6c08ea316ade0b115dc1a3a675e2c usr/share/locale/sr/LC_MESSAGES/bash.mo
816f07a3e0528e54a2d013cfb28facca usr/share/locale/sv/LC_MESSAGES/bash.mo
57103caa6d32ba931aa2f44a659ba9ad usr/share/locale/tr/LC_MESSAGES/bash.mo
2fb88e102f63dc65440af4b299138369 usr/share/locale/uk/LC_MESSAGES/bash.mo
a95dad2c8bd5fab04f02358d19fe11f6 usr/share/locale/vi/LC_MESSAGES/bash.mo
d390b21a6390f1fac45e7c6d3c5cbb11 usr/share/locale/zh_CN/LC_MESSAGES/bash.mo
07a8fec92b63e5a357f1c9f5ce98fa94 usr/share/locale/zh_TW/LC_MESSAGES/bash.mo
a98d97945a36f4c01508fa82d0235ef1 usr/share/man/man1/bash.1.gz
ab8320c478c9d17caaa4d86e113cf0a2 usr/share/man/man1/bashbug.1.gz
0c912132bdbce02861669392deb3f84c usr/share/man/man1/clear_console.1.gz
6ad61b838c1370d3bed5d4410644f34a usr/share/man/man1/rbash.1.gz
b2fb88f251700c29d638d9202e89a693 usr/share/man/man7/bash-builtins.7.gz
0c05a14279f95fdb4618a4ccaa469681 usr/share/menu/bash
-------------------------------
-------------------------------
running: ./dlocate -md5sum dpkg
COLUMNS="195"
TEMP=" -v --md5sum -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="--md5sum"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
490ac21123d35116e5ba78c9d9028dec sbin/start-stop-daemon
d2965be2b3809d2f5bd755d0533fbf7f usr/bin/dpkg
5c4fb767e89afb8ba58b338eb3b64606 usr/bin/dpkg-deb
798b3cab516303c6b85bc11b5a482ae9 usr/bin/dpkg-divert
98a964072b61fffe1f32df0803236051 usr/bin/dpkg-maintscript-helper
9428cbe366b2c13dfc237f8e743a1624 usr/bin/dpkg-query
517a20f5171796e95159817ef82ff4b4 usr/bin/dpkg-split
5b62e740f1844c6dc549746140442cc9 usr/bin/dpkg-statoverride
c2864cf04717055039384fe7b7b26afe usr/bin/dpkg-trigger
37729c2acfaacd64931c6f19b69b8750 usr/bin/update-alternatives
f5c2a9458457860e236b648010541d67 usr/share/doc/dpkg/AUTHORS
0deda02de7a6d04d308db2a57d93ad26 usr/share/doc/dpkg/README.feature-removal-schedule.gz
9d2a07f6ca63918e0711de69d93e72d7 usr/share/doc/dpkg/THANKS.gz
474aea2a3fa2424a1bb4bb1a6badee17 usr/share/doc/dpkg/changelog.Debian.gz
e97bccdff0bcb68a54a90c28b81ca48f usr/share/doc/dpkg/changelog.gz
6a2d79a2c6cca445298c6781e499ad18 usr/share/doc/dpkg/copyright
975052edca832e272d243372aa9f8e67 usr/share/doc/dpkg/usertags.gz
6d7f75ec5c97af35c2f22581bd5fa181 usr/share/dpkg/abitable
85bc04bc1bdabf140672de275c9b2a4d usr/share/dpkg/cputable
da44d0cf845745dd7beee58a7fed34b0 usr/share/dpkg/ostable
6e252daa14ab5778054a60bca3529f6f usr/share/dpkg/triplettable
47572a39d07a6b83735cc7e90de2e5f7 usr/share/lintian/overrides/dpkg
46c5480825808ba47ee0c5e536d57071 usr/share/locale/ast/LC_MESSAGES/dpkg.mo
726fb93b1079a3824f9a2dcdfbf3cece usr/share/locale/bs/LC_MESSAGES/dpkg.mo
ce6d80794e727ed1ac0da3a218a904ca usr/share/locale/ca/LC_MESSAGES/dpkg.mo
db456bce1b7772ea4c9b32b264408762 usr/share/locale/cs/LC_MESSAGES/dpkg.mo
2a1cd1f8b07429c90627fea8a70afe29 usr/share/locale/da/LC_MESSAGES/dpkg.mo
32547fae4c7a6457dfe0224df8436b1a usr/share/locale/de/LC_MESSAGES/dpkg.mo
010687b5a86a68bc11400504d72875df usr/share/locale/dz/LC_MESSAGES/dpkg.mo
bc4d030e2cfb3ddabb2640595ccdd0af usr/share/locale/el/LC_MESSAGES/dpkg.mo
d0dbe3695b7256bb755cd47d33213754 usr/share/locale/eo/LC_MESSAGES/dpkg.mo
a33c8e0d9c26bda1e8dfeafb885c3394 usr/share/locale/es/LC_MESSAGES/dpkg.mo
c80356dcd0769cbe795c7c7e28425b79 usr/share/locale/et/LC_MESSAGES/dpkg.mo
d61b67e2e1f431ae6b44d2990ec5ad60 usr/share/locale/eu/LC_MESSAGES/dpkg.mo
6f9725761aa8965da245b9947f79d2d7 usr/share/locale/fr/LC_MESSAGES/dpkg.mo
3436c544a97f8278e88c74613fe85ddf usr/share/locale/gl/LC_MESSAGES/dpkg.mo
3479e71474445229d34319101c6280ca usr/share/locale/hu/LC_MESSAGES/dpkg.mo
34fc0e73e0d3d105e5c977481e3506ca usr/share/locale/id/LC_MESSAGES/dpkg.mo
77ba0d694b0446b321ebbc6fc5b45bfb usr/share/locale/it/LC_MESSAGES/dpkg.mo
afa225d616dc3956578d89c23eddf0eb usr/share/locale/ja/LC_MESSAGES/dpkg.mo
472d79d48f2a1eeaefa67456dc039cd3 usr/share/locale/km/LC_MESSAGES/dpkg.mo
6b9d07901d39c0b55f701e6e0df6a466 usr/share/locale/ko/LC_MESSAGES/dpkg.mo
39312d9bf15f7e7bb7d1e19bf54a8daf usr/share/locale/ku/LC_MESSAGES/dpkg.mo
56c95ae148b3f01ef77cc800718160c9 usr/share/locale/lt/LC_MESSAGES/dpkg.mo
a27ab4084c9e473cdb64ad9da75be5ce usr/share/locale/mr/LC_MESSAGES/dpkg.mo
96655c574b401c19d721185ca8d64207 usr/share/locale/nb/LC_MESSAGES/dpkg.mo
b85b697e006f43a34c5555f77c4f0800 usr/share/locale/ne/LC_MESSAGES/dpkg.mo
38a8e324b91dc6394ad4e9d66e2ca7e5 usr/share/locale/nl/LC_MESSAGES/dpkg.mo
f71f653beeb462b572059ec0cac946b5 usr/share/locale/nn/LC_MESSAGES/dpkg.mo
3ccf859ff753e30db5ee317e4400623a usr/share/locale/pa/LC_MESSAGES/dpkg.mo
b4a9fc4706a3d065914d7a3cfa8fb1ce usr/share/locale/pl/LC_MESSAGES/dpkg.mo
0bcf63857e724ae85812ea12b5b2b2f1 usr/share/locale/pt/LC_MESSAGES/dpkg.mo
804e3283269b32f03987a78324f85b80 usr/share/locale/pt_BR/LC_MESSAGES/dpkg.mo
039c91aa6dd3471607b1c67c42c032cb usr/share/locale/ro/LC_MESSAGES/dpkg.mo
76770ed862e14ee430292555bdcc9f39 usr/share/locale/ru/LC_MESSAGES/dpkg.mo
f9c73cc0ccae874aba0335f29bab7931 usr/share/locale/sk/LC_MESSAGES/dpkg.mo
a3ad982f8168bdb5efe32e6f1694239b usr/share/locale/sv/LC_MESSAGES/dpkg.mo
9c61bfe427ff97771c722afe41c3adf7 usr/share/locale/th/LC_MESSAGES/dpkg.mo
72e7b5602d58354b2943934e0488f0fc usr/share/locale/tl/LC_MESSAGES/dpkg.mo
bbd6194b2c7049347950c63ada2decbf usr/share/locale/tr/LC_MESSAGES/dpkg.mo
40784985a011fb28c40af5203d432f43 usr/share/locale/vi/LC_MESSAGES/dpkg.mo
03897ff0a1d26c1325100c1788c368b2 usr/share/locale/zh_CN/LC_MESSAGES/dpkg.mo
5190d26f66f400dfee08166b93184b4a usr/share/locale/zh_TW/LC_MESSAGES/dpkg.mo
6711fc7a3f5edced5a6ec5bba1ffa80a usr/share/man/de/man1/dpkg-deb.1.gz
ee4dbd417401a39d06d052c0db0e8714 usr/share/man/de/man1/dpkg-divert.1.gz
58333c32898e99bfecd0759705cb3e7d usr/share/man/de/man1/dpkg-maintscript-helper.1.gz
857d6ec7dee9dddda90293f5e70fd55c usr/share/man/de/man1/dpkg-query.1.gz
f57137e1a66f780d13401803576c0a82 usr/share/man/de/man1/dpkg-split.1.gz
c9583c50240293fef076f66c9e26f928 usr/share/man/de/man1/dpkg-statoverride.1.gz
b6eb437c65a1bf8c9e6bb32cf39533a9 usr/share/man/de/man1/dpkg-trigger.1.gz
2467bcb8ef50913148918cf988caec1f usr/share/man/de/man1/dpkg.1.gz
5dcc92252b5b9e5bc7daff3110dbd399 usr/share/man/de/man1/update-alternatives.1.gz
83f02c9685829c3d617bf5331752fab2 usr/share/man/de/man5/dpkg.cfg.5.gz
d00d070803f3cc00139084c3a18027da usr/share/man/de/man8/start-stop-daemon.8.gz
6345b4420819d23ccc2d12a9c5694b9f usr/share/man/es/man1/dpkg-divert.1.gz
300fd78fa7240dd9a476bca201d90e34 usr/share/man/es/man1/dpkg-split.1.gz
353492c250b2164f8e494bef7c1e0539 usr/share/man/es/man1/dpkg-trigger.1.gz
7b1b79a2b42edb9f56300b2fa748584f usr/share/man/es/man1/update-alternatives.1.gz
fbede4c9667088ccab76837ea78062c1 usr/share/man/es/man5/dpkg.cfg.5.gz
f525123a761a325353e9c761f4e3ab96 usr/share/man/es/man8/start-stop-daemon.8.gz
e55ddf1fa26ff6b5e72fe8b4d02f07ee usr/share/man/fr/man1/dpkg-deb.1.gz
4d85da7c26291a051e640b4dcf9f499a usr/share/man/fr/man1/dpkg-divert.1.gz
e58304660d2f3f67bc50aa9a22f5329c usr/share/man/fr/man1/dpkg-maintscript-helper.1.gz
145e64b3794dcfa034b055f5e343f5ef usr/share/man/fr/man1/dpkg-query.1.gz
fdef0a3960ec2ca9058c01b7c13baa47 usr/share/man/fr/man1/dpkg-split.1.gz
91045ca30c72d4c307cb4a8f6a3cea8a usr/share/man/fr/man1/dpkg-statoverride.1.gz
2441728607da5468ca77afdb8deac388 usr/share/man/fr/man1/dpkg-trigger.1.gz
7861c673bcba67470b2185ef507e4a8a usr/share/man/fr/man1/update-alternatives.1.gz
3fdd646c92f129ccb4cff9035cbf4375 usr/share/man/fr/man5/dpkg.cfg.5.gz
39c8a43edc3342cbb568b7a7a367aade usr/share/man/fr/man8/start-stop-daemon.8.gz
c2edaec6d74446d622a8b067efbfe6d0 usr/share/man/hu/man5/dpkg.cfg.5.gz
65e49c71eea4f3ec44c50b01d3d67f58 usr/share/man/it/man1/dpkg-deb.1.gz
43f040f71329270e402afcb79c4e8f74 usr/share/man/it/man1/dpkg-maintscript-helper.1.gz
69013919e75319081bb0ddba6ffa2772 usr/share/man/it/man1/dpkg-query.1.gz
042f37e70f9e9683c8e21cc0c95f85fb usr/share/man/it/man1/dpkg-split.1.gz
f672e7f09e4d3bfbc4a29722cfd0f676 usr/share/man/it/man1/dpkg-statoverride.1.gz
94e0b6879e5bfd9d73bb0031eaa390fb usr/share/man/it/man1/update-alternatives.1.gz
6ec417cd72122fc28d20328a7c715089 usr/share/man/it/man5/dpkg.cfg.5.gz
33a317597715cb0f4ba8856596cfce6d usr/share/man/it/man8/start-stop-daemon.8.gz
b88c9bd0fcd0c2ba666342bda815c51c usr/share/man/ja/man1/dpkg-divert.1.gz
522decb5293f2432386024d1f3e0f905 usr/share/man/ja/man1/dpkg-split.1.gz
c0a5970a5373a1db03d13f60533288f2 usr/share/man/ja/man1/dpkg-trigger.1.gz
09c965f2c51110cbb3621cdbbddcfe55 usr/share/man/ja/man1/update-alternatives.1.gz
bace96b06db69ce15c092d233e48c4ea usr/share/man/ja/man5/dpkg.cfg.5.gz
a43416d44c33ed6f56571a6bbaebf258 usr/share/man/ja/man8/start-stop-daemon.8.gz
7bd2da3221f5b4c63fcfeaa163c048b5 usr/share/man/man1/dpkg-deb.1.gz
8fe6c72ae40cf8bade8a72fe699d2344 usr/share/man/man1/dpkg-divert.1.gz
ec4c33750439859480f4c2619bcb3eba usr/share/man/man1/dpkg-maintscript-helper.1.gz
c23819d2573d511ff519289cf38520f4 usr/share/man/man1/dpkg-query.1.gz
a742f7b34db5a7d84a1135ed2bc5b9db usr/share/man/man1/dpkg-split.1.gz
dfbe9a535d4bc010b41df86672bd4c0a usr/share/man/man1/dpkg-statoverride.1.gz
8c56319cf2093cd01b6506e6d026d758 usr/share/man/man1/dpkg-trigger.1.gz
8ad673bfd8ac528fa26d8eb50dee2145 usr/share/man/man1/dpkg.1.gz
4cb03bc79493d944cf1b14ec6b4195b0 usr/share/man/man1/update-alternatives.1.gz
1836d197a350e2abc005b4f0bb606eb4 usr/share/man/man5/dpkg.cfg.5.gz
6fbfaa244348444de214659a68ad9087 usr/share/man/man8/start-stop-daemon.8.gz
3b890c38471f6a6370bd14b8d9a55615 usr/share/man/nl/man1/dpkg-deb.1.gz
eb4fe91d330805b34a145028559a2e00 usr/share/man/nl/man1/dpkg-divert.1.gz
cdf6a0ff05f5eb49b090236c68f76955 usr/share/man/nl/man1/dpkg-maintscript-helper.1.gz
2b73754201f94808c66232a506b83786 usr/share/man/nl/man1/dpkg-query.1.gz
f408f7782d8ee189632d7449fa8c9a1a usr/share/man/nl/man1/dpkg-split.1.gz
eda592ae85c7e10eb7244ad1031de325 usr/share/man/nl/man1/dpkg-statoverride.1.gz
74f4c6fe92c3326817b7a33f53e6c20e usr/share/man/nl/man1/dpkg-trigger.1.gz
ea0ef890cc41e75b8b4dcca0a11fd519 usr/share/man/nl/man1/dpkg.1.gz
8898d85690bc6ab87a088b8f5c072291 usr/share/man/nl/man1/update-alternatives.1.gz
7fed7efd87b81124912f700e5eec7487 usr/share/man/nl/man5/dpkg.cfg.5.gz
fcb34abea548a9d50a03ebee81414346 usr/share/man/nl/man8/start-stop-daemon.8.gz
853e3c622c6fe42ddaad33bba27e9256 usr/share/man/pl/man1/dpkg-divert.1.gz
f91dc0273ecf49930009cd5058bc93d9 usr/share/man/pl/man1/dpkg-split.1.gz
257e2445ee84b6de7db6c377acec8c59 usr/share/man/pl/man1/dpkg-trigger.1.gz
c453f252ffd44b0f5f5b9a7118acbde6 usr/share/man/pl/man1/update-alternatives.1.gz
4a6ac7e9cd20da7e99f75275aca6b6e1 usr/share/man/pl/man5/dpkg.cfg.5.gz
069d9c80506f6cb9361287f03112504e usr/share/man/pl/man8/start-stop-daemon.8.gz
20c17290b79a688743bf48b605d5fe50 usr/share/man/sv/man1/dpkg-deb.1.gz
03c348abda80c1f38952cb4681aa247e usr/share/man/sv/man1/dpkg-divert.1.gz
32825d21e59c2481a2658d27faf23b88 usr/share/man/sv/man1/dpkg-maintscript-helper.1.gz
33d4412aa44187a16d21afc944ab10cf usr/share/man/sv/man1/dpkg-query.1.gz
d3f090faa8949a712f7f3179dc03e2c8 usr/share/man/sv/man1/dpkg-split.1.gz
8f47219012db9a780c6eef032921d06a usr/share/man/sv/man1/dpkg-statoverride.1.gz
178f495469dc156700b37f7be2d2751a usr/share/man/sv/man1/dpkg-trigger.1.gz
bfa4e590bb13e318b69ef3292a324c10 usr/share/man/sv/man1/update-alternatives.1.gz
ae5d54160efb14ff60d4364c331cd518 usr/share/man/sv/man5/dpkg.cfg.5.gz
584139030f9a35c26d928a7a0bc15283 usr/share/man/sv/man8/start-stop-daemon.8.gz
-------------------------------
-------------------------------
running: ./dlocate -md5sum apt
COLUMNS="195"
TEMP=" -v --md5sum -- 'apt'"
PKGS='([0]="apt")'
OPTION="--md5sum"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
47f641d2f57a275c0a5200f4e897b229 lib/systemd/system/apt-daily.service
cee7ff08ae99090d23ed21da882d49bb lib/systemd/system/apt-daily.timer
56924c9cadc69f311dd86b8f4ec86933 usr/bin/apt
7a32f7362065ccae24b98f726d63a06c usr/bin/apt-cache
a7cfde72f8090e07ee5a7afdc3191ea5 usr/bin/apt-cdrom
21238a6664b9038257e32150a8f14632 usr/bin/apt-config
d0f1791ac81f1c2d770adaad045f69b5 usr/bin/apt-get
e9274565b2042d1714759773b0006abe usr/bin/apt-key
18ef3e683c5d3797a533652b6e4baa76 usr/bin/apt-mark
2e63edafbd8c83d9937474ec20641aec usr/lib/apt/apt-helper
80fa414b47553dc01059066fa213485d usr/lib/apt/apt.systemd.daily
46d92c7121932bbc0130664f9af9a7d0 usr/lib/apt/methods/cdrom
cdaa201a9c70f5f7ba4a09a31e7dcc02 usr/lib/apt/methods/copy
2650aef85f3f1167302cde948fbed59b usr/lib/apt/methods/file
83fac48e3cfbaa912aa4b200e92e1ad2 usr/lib/apt/methods/ftp
f2f00033dd001c8a4e8dea82f972fbf3 usr/lib/apt/methods/gpgv
844c27d52d481853fa90af5d1672c0f5 usr/lib/apt/methods/http
6ab3bb2239126d4deb5b669a9d6f272c usr/lib/apt/methods/mirror
76a4ec375d3a15acfdec08bae7ff948c usr/lib/apt/methods/rred
cbedcae22fbfaad39af0f7f271d7de57 usr/lib/apt/methods/rsh
ba19dfd8d1a68c344f90855350104b0a usr/lib/apt/methods/store
5c20df19d9e2659aa6a6c64276c5764c usr/lib/dpkg/methods/apt/desc.apt
e74d5f31cf2d2f567fd5984bdcea0b88 usr/lib/dpkg/methods/apt/install
2662778ba9613ced00bb069711f43bf4 usr/lib/dpkg/methods/apt/names
fe255f7b248114d4b6a5bf6058f8b42e usr/lib/dpkg/methods/apt/setup
c6445e2a9543b936ca687cdd5c837214 usr/lib/dpkg/methods/apt/update
39f99194e60bd858b146dda926dd59c1 usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0
f7612cd11ec6ff146058e89281940bc1 usr/share/bash-completion/completions/apt
3b3b762a36c16ca9e1ab2ea0d7c1e20c usr/share/bug/apt/script
738694b20e5d6474963aa51cd461948c usr/share/doc/apt/NEWS.Debian.gz
8b00ffe46d7da82c727826ffbbc6b7e1 usr/share/doc/apt/changelog.gz
fa9fc3fde34b734ee15aecd2066df5b1 usr/share/doc/apt/copyright
33e375069ce2c2f76fde67ec424863e9 usr/share/doc/apt/examples/apt-https-method-example.conf.gz
53ee5804464a6585a3b9eba690d7c65a usr/share/doc/apt/examples/apt.conf
61ca3bc327b41c073a73a404d8767131 usr/share/doc/apt/examples/configure-index.gz
7bbf27915932121454353f120bacd35a usr/share/doc/apt/examples/sources.list
336372a7ae281820d99903f0fb652c34 usr/share/lintian/overrides/apt
13dc0431eba8747eba597a05e2c49796 usr/share/locale/ar/LC_MESSAGES/apt.mo
9129ba4d8fd1ffc6cdd106ce8cb4c062 usr/share/locale/ast/LC_MESSAGES/apt.mo
af7a6ad3bfc5c80ccefd246699055ac1 usr/share/locale/bg/LC_MESSAGES/apt.mo
79843990c9d86d1ea52cd7787a2ec481 usr/share/locale/bs/LC_MESSAGES/apt.mo
5a5e7b0a211b036f0b4eb7145b1d12ba usr/share/locale/ca/LC_MESSAGES/apt.mo
471c275b048146f08d16d3d289d4b26a usr/share/locale/cs/LC_MESSAGES/apt.mo
d6c003651e952e57ea66d5f81fb665ee usr/share/locale/cy/LC_MESSAGES/apt.mo
0d69dbb7eaeb7a96bb9e8eae261f67e9 usr/share/locale/da/LC_MESSAGES/apt.mo
f58ca5f07d20d295a26000cccd0e3dbe usr/share/locale/de/LC_MESSAGES/apt.mo
37e05b2c6a6d1724bb0474bf76702d68 usr/share/locale/dz/LC_MESSAGES/apt.mo
c1f543c4a0cffa6bae06e8ba03cfe610 usr/share/locale/el/LC_MESSAGES/apt.mo
7bd997f85ba1bb9650865afd54b155b1 usr/share/locale/es/LC_MESSAGES/apt.mo
65e28d6dedddb6bf330a16b93ad7f2b0 usr/share/locale/eu/LC_MESSAGES/apt.mo
59712129eb730d7882beebc17f01f35a usr/share/locale/fi/LC_MESSAGES/apt.mo
a3dfbc7ed0d3015e67af83d56f1e6d32 usr/share/locale/fr/LC_MESSAGES/apt.mo
74cbc3d6929895057116c8dc30ea17d0 usr/share/locale/gl/LC_MESSAGES/apt.mo
e1121702b4bd018e77498b9441835ea1 usr/share/locale/hu/LC_MESSAGES/apt.mo
107b51601bd66b9c510fee5f1e04bbb2 usr/share/locale/it/LC_MESSAGES/apt.mo
222bc9027ffe6414f45f11f2266c765c usr/share/locale/ja/LC_MESSAGES/apt.mo
2288e314e38f64462b384e2be53c0929 usr/share/locale/km/LC_MESSAGES/apt.mo
a644a30087807d21ed5ec115af7dc386 usr/share/locale/ko/LC_MESSAGES/apt.mo
33bad45baeec985a8042c6bb6c842b72 usr/share/locale/ku/LC_MESSAGES/apt.mo
49d04fdfe97d92e2002d32faeab01b3d usr/share/locale/lt/LC_MESSAGES/apt.mo
6c41d563fff1d596e377453bf7363834 usr/share/locale/mr/LC_MESSAGES/apt.mo
74e0b85009be3026b983bd1ac067609a usr/share/locale/nb/LC_MESSAGES/apt.mo
96b0cab94525f5874a950cfdb0d1bdf5 usr/share/locale/ne/LC_MESSAGES/apt.mo
45dbb44512396d5cdae9d873d8d05a15 usr/share/locale/nl/LC_MESSAGES/apt.mo
30ca1c9f3567e4a7acd9058d62c01828 usr/share/locale/nn/LC_MESSAGES/apt.mo
f68f37d22a7c2d67f25312fb713d65f3 usr/share/locale/pl/LC_MESSAGES/apt.mo
d1bc3971dbf1b520d4ba6d75881e41f8 usr/share/locale/pt/LC_MESSAGES/apt.mo
2f590859a31e82a3fe03bd57eccd6951 usr/share/locale/pt_BR/LC_MESSAGES/apt.mo
48e5fb93e7815d4cd22ee9425efd03a8 usr/share/locale/ro/LC_MESSAGES/apt.mo
250810fb14c455c6baddad290e5cffb8 usr/share/locale/ru/LC_MESSAGES/apt.mo
71f6100ec1137b0d64689ba4bb2c57ca usr/share/locale/sk/LC_MESSAGES/apt.mo
9a27786c73706d75f20ea79b0798678e usr/share/locale/sl/LC_MESSAGES/apt.mo
6cb225d1f390825d9743b7aff8186e78 usr/share/locale/sv/LC_MESSAGES/apt.mo
dddb1bb2714fc4f009f2f35ef80835f4 usr/share/locale/th/LC_MESSAGES/apt.mo
d73d5b82fd85c5e606ec1c73fcd2af30 usr/share/locale/tl/LC_MESSAGES/apt.mo
ca272c531fd3067883e5233bdafbca23 usr/share/locale/tr/LC_MESSAGES/apt.mo
0446f8b0857ce5a518c82548e1d85c6a usr/share/locale/uk/LC_MESSAGES/apt.mo
e4b72f8ce6f727f2221890401b39fce2 usr/share/locale/vi/LC_MESSAGES/apt.mo
ceb65aaa29cc9ce3a6af314882c8d1d4 usr/share/locale/zh_CN/LC_MESSAGES/apt.mo
949d85b0a27a4d04068bcf8808e784f8 usr/share/locale/zh_TW/LC_MESSAGES/apt.mo
0b3e74cd03b9c45eab1c3639f8941033 usr/share/man/de/man5/apt.conf.5.gz
7f37326d0a2ae42cf6090ae7b63694ec usr/share/man/de/man5/apt_preferences.5.gz
b302dca1a88374ce137dc2f6a093b018 usr/share/man/de/man8/apt-cache.8.gz
d40f4da9ba786efdbcf39598a5fa9ad8 usr/share/man/de/man8/apt-cdrom.8.gz
b71820d346ab0592f264365a0da91219 usr/share/man/de/man8/apt-config.8.gz
bb1c8261a24b704cad6da26be891752a usr/share/man/de/man8/apt-get.8.gz
ebd21bae7f1cf792b9cdeb0a5392743d usr/share/man/de/man8/apt-key.8.gz
6b52dff239eee02d5d385019bb3dacc7 usr/share/man/es/man5/apt.conf.5.gz
a1e07c4eca84221181000982c68f4886 usr/share/man/es/man5/apt_preferences.5.gz
0792ffd25c319077748b9db209ea6393 usr/share/man/es/man8/apt-cache.8.gz
5aade75573dcfe11f2e904640a498e8e usr/share/man/es/man8/apt-cdrom.8.gz
3d26c5cf5585f2fa925186b850e8991d usr/share/man/es/man8/apt-config.8.gz
b7e83d9a96e2543b7a04897541faf63a usr/share/man/es/man8/apt-key.8.gz
fe13139e8b74f675c88c0579207e35e3 usr/share/man/fr/man5/apt.conf.5.gz
babcc1dad4435b4a194f6b5cd9901d27 usr/share/man/fr/man5/apt_preferences.5.gz
6d6f0dc49d393db90961e5629b999fb9 usr/share/man/fr/man8/apt-cache.8.gz
762bfe2d3df54efa24197371e4fbbf28 usr/share/man/fr/man8/apt-cdrom.8.gz
f37f056327687c5678839e7687fdbc9d usr/share/man/fr/man8/apt-config.8.gz
90ad40676c4d9d017fe7948700b0c649 usr/share/man/fr/man8/apt-get.8.gz
7db6eeeea40791a31ecc784846843378 usr/share/man/fr/man8/apt-key.8.gz
0ba93fb6f0feb81728512b731712567d usr/share/man/it/man5/apt.conf.5.gz
f618d4f6428986c8da5ddbbad9494e0b usr/share/man/it/man5/apt_preferences.5.gz
684bc22de0ed97bb9993f1a719a3bbb5 usr/share/man/it/man5/sources.list.5.gz
e15db640896cc2f466b879b14b262d84 usr/share/man/it/man8/apt-cache.8.gz
f9b475aec27c31e76cfdcb940e14db21 usr/share/man/it/man8/apt-cdrom.8.gz
e3e6ade330af1dd7d93f335995e4ab2e usr/share/man/it/man8/apt-config.8.gz
c3e34b6b466ce26243cad0aa6d54e234 usr/share/man/it/man8/apt-get.8.gz
5fe09734648893fe4b9b996e920cf3a8 usr/share/man/it/man8/apt-key.8.gz
b3724b155a85c098d3914f32c98cc576 usr/share/man/it/man8/apt-mark.8.gz
0ef07216d0c0b08c923aee1c421cba92 usr/share/man/it/man8/apt-secure.8.gz
91e991ace9a166f852e883668d5312ae usr/share/man/it/man8/apt.8.gz
b11b8a8efaa1de78e124f0156ed311a2 usr/share/man/ja/man5/apt.conf.5.gz
6ecaee585e0a266094c13477b7302e0b usr/share/man/ja/man5/apt_preferences.5.gz
0476cc64f056780be336e6f70f13d798 usr/share/man/ja/man5/sources.list.5.gz
1c7158c5b0a491cf9b824f870b481d8c usr/share/man/ja/man8/apt-cache.8.gz
e3a38543d1f464476dc90c6393606f39 usr/share/man/ja/man8/apt-cdrom.8.gz
f0a4b426321101d655aa9e4cebaf9831 usr/share/man/ja/man8/apt-config.8.gz
e04399a8914a3df5890a6681109c0e80 usr/share/man/ja/man8/apt-get.8.gz
7218ffa5562bab0e4c4f1a5e48fb8784 usr/share/man/ja/man8/apt-key.8.gz
74e4a2858ad52d61c66d1b68f01bc7c4 usr/share/man/ja/man8/apt-mark.8.gz
dd68fd75460438c8efae004ef4059e65 usr/share/man/ja/man8/apt-secure.8.gz
387561deb884d94998d47312ab3e7cbf usr/share/man/ja/man8/apt.8.gz
958dc79ad517c52f0ccf45718373583a usr/share/man/man5/apt.conf.5.gz
7656cb329e63c0942ecd739966ab53ea usr/share/man/man5/apt_preferences.5.gz
0b23845f76868ac7fd57ef3403288aac usr/share/man/man5/sources.list.5.gz
883d2053d257a3ac4ced2fac292be840 usr/share/man/man8/apt-cache.8.gz
98916fed6b81af05e11728bf80c432f1 usr/share/man/man8/apt-cdrom.8.gz
b25a6b67014cdfae1d87a1fecfc3f88f usr/share/man/man8/apt-config.8.gz
d2011f608ce003cfd0ce3b7ca74dee46 usr/share/man/man8/apt-get.8.gz
4732b2c4702052e3cd2e4f398c786340 usr/share/man/man8/apt-key.8.gz
bab1fc8920c1c3be158818e0ed719a8a usr/share/man/man8/apt-mark.8.gz
3ab1182f1b2f2d45cad229eeaccb21c2 usr/share/man/man8/apt-secure.8.gz
dc54bd8df637367891eaca9b3c524733 usr/share/man/man8/apt.8.gz
deffdb194e83586e6a86399d6233654d usr/share/man/nl/man5/apt.conf.5.gz
e228b6093b45cbed20d3e21b816cfbc0 usr/share/man/nl/man5/apt_preferences.5.gz
e8e03d32b5e0d04adf697bc277fb7bf2 usr/share/man/nl/man5/sources.list.5.gz
d9c4332efb5fcbac785254f8b44ea7c6 usr/share/man/nl/man8/apt-cache.8.gz
ee7da9ae707a9375d4aa9aa7118f5e21 usr/share/man/nl/man8/apt-cdrom.8.gz
49b7e2d0a2b45a71f31eafc1c345ad45 usr/share/man/nl/man8/apt-config.8.gz
4418cbd10e75bb051b4994afb0da61e7 usr/share/man/nl/man8/apt-get.8.gz
61df35c3a92c9a4d1f0a9f00870cfd46 usr/share/man/nl/man8/apt-key.8.gz
11a9e59592de9f9397240adbe050134a usr/share/man/nl/man8/apt-mark.8.gz
bfc2b3d3e833e575024da61521933374 usr/share/man/nl/man8/apt-secure.8.gz
ccf6c35bf17ea80931327f762cd34562 usr/share/man/nl/man8/apt.8.gz
bfdf8bcea4a8bc99b2cc727f31d7d123 usr/share/man/pl/man5/apt_preferences.5.gz
da27b87c6e0ac66af4de0af2bfca7bbf usr/share/man/pl/man8/apt-cache.8.gz
75029028b5f62d6b1370c77f99f0d8e4 usr/share/man/pl/man8/apt-cdrom.8.gz
8f9d49f47645e5fa5b6151d7e81be747 usr/share/man/pl/man8/apt-config.8.gz
2dbcd1eda80e954db2dfaf2e9b01951f usr/share/man/pl/man8/apt-key.8.gz
78c02d139df9cd949576981969ab1ba2 usr/share/man/pt/man5/apt.conf.5.gz
4ea591b7da2c23a02e749586bb7fa42e usr/share/man/pt/man5/apt_preferences.5.gz
2d26c234282913b6e39defdd05d488a8 usr/share/man/pt/man8/apt-cache.8.gz
02bcf2caba5eb5fdc7177d2043e5306d usr/share/man/pt/man8/apt-cdrom.8.gz
e6c4a3ac50ec46774a7861a0aabf3daf usr/share/man/pt/man8/apt-config.8.gz
f5d7405f3047cc235d4ddb227e288b5a usr/share/man/pt/man8/apt-get.8.gz
93947ed0b83c2511eed7192a3d3faa05 usr/share/man/pt/man8/apt-key.8.gz
-------------------------------
-------------------------------
running: ./dlocate -md5sum packagedoesnotexist
COLUMNS="195"
TEMP=" -v --md5sum -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="--md5sum"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
Package packagedoesnotexist is not installed or has no md5sums.
-------------------------------
-------------------------------
running: ./dlocate -md5sum xmp
COLUMNS="195"
TEMP=" -v --md5sum -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="--md5sum"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
1602d5d2b0bad121f8af9c6925e20944 usr/bin/xmp
6cc35b667a5a8c14197de2e5bddda0c3 usr/lib/mime/packages/xmp
35854fd1901e9f52cffa5aa3fd1a28e4 usr/share/doc/xmp/CREDITS
3484a57135ddc82ecf9400808f25e181 usr/share/doc/xmp/README
9142eeb73de7bd23eb14dcc65ed9292b usr/share/doc/xmp/changelog.Debian.gz
3a4f1316e851f07d6eb35f949a400dad usr/share/doc/xmp/changelog.gz
5a9b72b65398d45bcbab1accd4e51c8b usr/share/doc/xmp/copyright
051f33a84ee6bef5f4017341bda41807 usr/share/man/man1/xmp.1.gz
-------------------------------
-------------------------------
running: ./dlocate -md5check dlocate
COLUMNS="195"
TEMP=" -v --md5check -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="--md5check"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
usr/bin/dlocate: FAILED
usr/sbin/dpkg-hold: OK
usr/sbin/dpkg-purge: OK
usr/sbin/dpkg-remove: OK
usr/sbin/dpkg-unhold: OK
usr/sbin/update-dlocatedb: OK
usr/share/doc/dlocate/README.Debian: OK
usr/share/doc/dlocate/changelog.gz: OK
usr/share/doc/dlocate/copyright: OK
usr/share/man/man1/dlocate.1.gz: OK
usr/share/man/man8/dpkg-hold.8.gz: OK
usr/share/man/man8/dpkg-purge.8.gz: OK
usr/share/man/man8/dpkg-remove.8.gz: OK
usr/share/man/man8/dpkg-unhold.8.gz: OK
usr/share/man/man8/update-dlocatedb.8.gz: OK
md5sum: WARNING: 1 computed checksum did NOT match
-------------------------------
-------------------------------
running: ./dlocate -md5check bash
COLUMNS="195"
TEMP=" -v --md5check -- 'bash'"
PKGS='([0]="bash")'
OPTION="--md5check"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
bin/bash: OK
usr/bin/bashbug: OK
usr/bin/clear_console: OK
usr/share/doc/bash/CHANGES.gz: OK
usr/share/doc/bash/COMPAT.gz: OK
usr/share/doc/bash/INTRO.gz: OK
usr/share/doc/bash/NEWS.gz: OK
usr/share/doc/bash/POSIX.gz: OK
usr/share/doc/bash/RBASH: OK
usr/share/doc/bash/README: OK
usr/share/doc/bash/README.Debian.gz: OK
usr/share/doc/bash/README.abs-guide: OK
usr/share/doc/bash/README.commands.gz: OK
usr/share/doc/bash/changelog.Debian.amd64.gz: OK
usr/share/doc/bash/changelog.Debian.gz: OK
usr/share/doc/bash/copyright: OK
usr/share/doc/bash/inputrc.arrows: OK
usr/share/lintian/overrides/bash: OK
usr/share/locale/af/LC_MESSAGES/bash.mo: OK
usr/share/locale/bg/LC_MESSAGES/bash.mo: OK
usr/share/locale/ca/LC_MESSAGES/bash.mo: OK
usr/share/locale/cs/LC_MESSAGES/bash.mo: OK
usr/share/locale/da/LC_MESSAGES/bash.mo: OK
usr/share/locale/de/LC_MESSAGES/bash.mo: OK
usr/share/locale/el/LC_MESSAGES/bash.mo: OK
usr/share/locale/en@boldquot/LC_MESSAGES/bash.mo: OK
usr/share/locale/en@quot/LC_MESSAGES/bash.mo: OK
usr/share/locale/eo/LC_MESSAGES/bash.mo: OK
usr/share/locale/es/LC_MESSAGES/bash.mo: OK
usr/share/locale/et/LC_MESSAGES/bash.mo: OK
usr/share/locale/fi/LC_MESSAGES/bash.mo: OK
usr/share/locale/fr/LC_MESSAGES/bash.mo: OK
usr/share/locale/ga/LC_MESSAGES/bash.mo: OK
usr/share/locale/gl/LC_MESSAGES/bash.mo: OK
usr/share/locale/hr/LC_MESSAGES/bash.mo: OK
usr/share/locale/hu/LC_MESSAGES/bash.mo: OK
usr/share/locale/id/LC_MESSAGES/bash.mo: OK
usr/share/locale/it/LC_MESSAGES/bash.mo: OK
usr/share/locale/ja/LC_MESSAGES/bash.mo: OK
usr/share/locale/lt/LC_MESSAGES/bash.mo: OK
usr/share/locale/nl/LC_MESSAGES/bash.mo: OK
usr/share/locale/pl/LC_MESSAGES/bash.mo: OK
usr/share/locale/pt_BR/LC_MESSAGES/bash.mo: OK
usr/share/locale/ro/LC_MESSAGES/bash.mo: OK
usr/share/locale/ru/LC_MESSAGES/bash.mo: OK
usr/share/locale/sk/LC_MESSAGES/bash.mo: OK
usr/share/locale/sl/LC_MESSAGES/bash.mo: OK
usr/share/locale/sr/LC_MESSAGES/bash.mo: OK
usr/share/locale/sv/LC_MESSAGES/bash.mo: OK
usr/share/locale/tr/LC_MESSAGES/bash.mo: OK
usr/share/locale/uk/LC_MESSAGES/bash.mo: OK
usr/share/locale/vi/LC_MESSAGES/bash.mo: OK
usr/share/locale/zh_CN/LC_MESSAGES/bash.mo: OK
usr/share/locale/zh_TW/LC_MESSAGES/bash.mo: OK
usr/share/man/man1/bash.1.gz: OK
usr/share/man/man1/bashbug.1.gz: OK
usr/share/man/man1/clear_console.1.gz: OK
usr/share/man/man1/rbash.1.gz: OK
usr/share/man/man7/bash-builtins.7.gz: OK
usr/share/menu/bash: OK
-------------------------------
-------------------------------
running: ./dlocate -md5check dpkg
COLUMNS="195"
TEMP=" -v --md5check -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="--md5check"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
sbin/start-stop-daemon: OK
usr/bin/dpkg: OK
usr/bin/dpkg-deb: OK
usr/bin/dpkg-divert: OK
usr/bin/dpkg-maintscript-helper: OK
usr/bin/dpkg-query: OK
usr/bin/dpkg-split: OK
usr/bin/dpkg-statoverride: OK
usr/bin/dpkg-trigger: OK
usr/bin/update-alternatives: OK
usr/share/doc/dpkg/AUTHORS: OK
usr/share/doc/dpkg/README.feature-removal-schedule.gz: OK
usr/share/doc/dpkg/THANKS.gz: OK
usr/share/doc/dpkg/changelog.Debian.gz: OK
usr/share/doc/dpkg/changelog.gz: OK
usr/share/doc/dpkg/copyright: OK
usr/share/doc/dpkg/usertags.gz: OK
usr/share/dpkg/abitable: OK
usr/share/dpkg/cputable: OK
usr/share/dpkg/ostable: OK
usr/share/dpkg/triplettable: OK
usr/share/lintian/overrides/dpkg: OK
usr/share/locale/ast/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/bs/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/ca/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/cs/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/da/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/de/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/dz/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/el/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/eo/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/es/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/et/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/eu/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/fr/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/gl/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/hu/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/id/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/it/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/ja/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/km/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/ko/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/ku/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/lt/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/mr/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/nb/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/ne/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/nl/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/nn/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/pa/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/pl/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/pt/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/pt_BR/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/ro/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/ru/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/sk/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/sv/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/th/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/tl/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/tr/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/vi/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/zh_CN/LC_MESSAGES/dpkg.mo: OK
usr/share/locale/zh_TW/LC_MESSAGES/dpkg.mo: OK
usr/share/man/de/man1/dpkg-deb.1.gz: OK
usr/share/man/de/man1/dpkg-divert.1.gz: OK
usr/share/man/de/man1/dpkg-maintscript-helper.1.gz: OK
usr/share/man/de/man1/dpkg-query.1.gz: OK
usr/share/man/de/man1/dpkg-split.1.gz: OK
usr/share/man/de/man1/dpkg-statoverride.1.gz: OK
usr/share/man/de/man1/dpkg-trigger.1.gz: OK
usr/share/man/de/man1/dpkg.1.gz: OK
usr/share/man/de/man1/update-alternatives.1.gz: OK
usr/share/man/de/man5/dpkg.cfg.5.gz: OK
usr/share/man/de/man8/start-stop-daemon.8.gz: OK
usr/share/man/es/man1/dpkg-divert.1.gz: OK
usr/share/man/es/man1/dpkg-split.1.gz: OK
usr/share/man/es/man1/dpkg-trigger.1.gz: OK
usr/share/man/es/man1/update-alternatives.1.gz: OK
usr/share/man/es/man5/dpkg.cfg.5.gz: OK
usr/share/man/es/man8/start-stop-daemon.8.gz: OK
usr/share/man/fr/man1/dpkg-deb.1.gz: OK
usr/share/man/fr/man1/dpkg-divert.1.gz: OK
usr/share/man/fr/man1/dpkg-maintscript-helper.1.gz: OK
usr/share/man/fr/man1/dpkg-query.1.gz: OK
usr/share/man/fr/man1/dpkg-split.1.gz: OK
usr/share/man/fr/man1/dpkg-statoverride.1.gz: OK
usr/share/man/fr/man1/dpkg-trigger.1.gz: OK
usr/share/man/fr/man1/update-alternatives.1.gz: OK
usr/share/man/fr/man5/dpkg.cfg.5.gz: OK
usr/share/man/fr/man8/start-stop-daemon.8.gz: OK
usr/share/man/hu/man5/dpkg.cfg.5.gz: OK
usr/share/man/it/man1/dpkg-deb.1.gz: OK
usr/share/man/it/man1/dpkg-maintscript-helper.1.gz: OK
usr/share/man/it/man1/dpkg-query.1.gz: OK
usr/share/man/it/man1/dpkg-split.1.gz: OK
usr/share/man/it/man1/dpkg-statoverride.1.gz: OK
usr/share/man/it/man1/update-alternatives.1.gz: OK
usr/share/man/it/man5/dpkg.cfg.5.gz: OK
usr/share/man/it/man8/start-stop-daemon.8.gz: OK
usr/share/man/ja/man1/dpkg-divert.1.gz: OK
usr/share/man/ja/man1/dpkg-split.1.gz: OK
usr/share/man/ja/man1/dpkg-trigger.1.gz: OK
usr/share/man/ja/man1/update-alternatives.1.gz: OK
usr/share/man/ja/man5/dpkg.cfg.5.gz: OK
usr/share/man/ja/man8/start-stop-daemon.8.gz: OK
usr/share/man/man1/dpkg-deb.1.gz: OK
usr/share/man/man1/dpkg-divert.1.gz: OK
usr/share/man/man1/dpkg-maintscript-helper.1.gz: OK
usr/share/man/man1/dpkg-query.1.gz: OK
usr/share/man/man1/dpkg-split.1.gz: OK
usr/share/man/man1/dpkg-statoverride.1.gz: OK
usr/share/man/man1/dpkg-trigger.1.gz: OK
usr/share/man/man1/dpkg.1.gz: OK
usr/share/man/man1/update-alternatives.1.gz: OK
usr/share/man/man5/dpkg.cfg.5.gz: OK
usr/share/man/man8/start-stop-daemon.8.gz: OK
usr/share/man/nl/man1/dpkg-deb.1.gz: OK
usr/share/man/nl/man1/dpkg-divert.1.gz: OK
usr/share/man/nl/man1/dpkg-maintscript-helper.1.gz: OK
usr/share/man/nl/man1/dpkg-query.1.gz: OK
usr/share/man/nl/man1/dpkg-split.1.gz: OK
usr/share/man/nl/man1/dpkg-statoverride.1.gz: OK
usr/share/man/nl/man1/dpkg-trigger.1.gz: OK
usr/share/man/nl/man1/dpkg.1.gz: OK
usr/share/man/nl/man1/update-alternatives.1.gz: OK
usr/share/man/nl/man5/dpkg.cfg.5.gz: OK
usr/share/man/nl/man8/start-stop-daemon.8.gz: OK
usr/share/man/pl/man1/dpkg-divert.1.gz: OK
usr/share/man/pl/man1/dpkg-split.1.gz: OK
usr/share/man/pl/man1/dpkg-trigger.1.gz: OK
usr/share/man/pl/man1/update-alternatives.1.gz: OK
usr/share/man/pl/man5/dpkg.cfg.5.gz: OK
usr/share/man/pl/man8/start-stop-daemon.8.gz: OK
usr/share/man/sv/man1/dpkg-deb.1.gz: OK
usr/share/man/sv/man1/dpkg-divert.1.gz: OK
usr/share/man/sv/man1/dpkg-maintscript-helper.1.gz: OK
usr/share/man/sv/man1/dpkg-query.1.gz: OK
usr/share/man/sv/man1/dpkg-split.1.gz: OK
usr/share/man/sv/man1/dpkg-statoverride.1.gz: OK
usr/share/man/sv/man1/dpkg-trigger.1.gz: OK
usr/share/man/sv/man1/update-alternatives.1.gz: OK
usr/share/man/sv/man5/dpkg.cfg.5.gz: OK
usr/share/man/sv/man8/start-stop-daemon.8.gz: OK
-------------------------------
-------------------------------
running: ./dlocate -md5check apt
COLUMNS="195"
TEMP=" -v --md5check -- 'apt'"
PKGS='([0]="apt")'
OPTION="--md5check"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
lib/systemd/system/apt-daily.service: OK
lib/systemd/system/apt-daily.timer: OK
usr/bin/apt: OK
usr/bin/apt-cache: OK
usr/bin/apt-cdrom: OK
usr/bin/apt-config: OK
usr/bin/apt-get: OK
usr/bin/apt-key: OK
usr/bin/apt-mark: OK
usr/lib/apt/apt-helper: OK
usr/lib/apt/apt.systemd.daily: OK
usr/lib/apt/methods/cdrom: OK
usr/lib/apt/methods/copy: OK
usr/lib/apt/methods/file: OK
usr/lib/apt/methods/ftp: OK
usr/lib/apt/methods/gpgv: OK
usr/lib/apt/methods/http: OK
usr/lib/apt/methods/mirror: OK
usr/lib/apt/methods/rred: OK
usr/lib/apt/methods/rsh: OK
usr/lib/apt/methods/store: OK
usr/lib/dpkg/methods/apt/desc.apt: OK
usr/lib/dpkg/methods/apt/install: OK
usr/lib/dpkg/methods/apt/names: OK
usr/lib/dpkg/methods/apt/setup: OK
usr/lib/dpkg/methods/apt/update: OK
usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0: OK
usr/share/bash-completion/completions/apt: OK
usr/share/bug/apt/script: OK
usr/share/doc/apt/NEWS.Debian.gz: OK
usr/share/doc/apt/changelog.gz: OK
usr/share/doc/apt/copyright: OK
usr/share/doc/apt/examples/apt-https-method-example.conf.gz: OK
usr/share/doc/apt/examples/apt.conf: OK
usr/share/doc/apt/examples/configure-index.gz: OK
usr/share/doc/apt/examples/sources.list: OK
usr/share/lintian/overrides/apt: OK
usr/share/locale/ar/LC_MESSAGES/apt.mo: OK
usr/share/locale/ast/LC_MESSAGES/apt.mo: OK
usr/share/locale/bg/LC_MESSAGES/apt.mo: OK
usr/share/locale/bs/LC_MESSAGES/apt.mo: OK
usr/share/locale/ca/LC_MESSAGES/apt.mo: OK
usr/share/locale/cs/LC_MESSAGES/apt.mo: OK
usr/share/locale/cy/LC_MESSAGES/apt.mo: OK
usr/share/locale/da/LC_MESSAGES/apt.mo: OK
usr/share/locale/de/LC_MESSAGES/apt.mo: OK
usr/share/locale/dz/LC_MESSAGES/apt.mo: OK
usr/share/locale/el/LC_MESSAGES/apt.mo: OK
usr/share/locale/es/LC_MESSAGES/apt.mo: OK
usr/share/locale/eu/LC_MESSAGES/apt.mo: OK
usr/share/locale/fi/LC_MESSAGES/apt.mo: OK
usr/share/locale/fr/LC_MESSAGES/apt.mo: OK
usr/share/locale/gl/LC_MESSAGES/apt.mo: OK
usr/share/locale/hu/LC_MESSAGES/apt.mo: OK
usr/share/locale/it/LC_MESSAGES/apt.mo: OK
usr/share/locale/ja/LC_MESSAGES/apt.mo: OK
usr/share/locale/km/LC_MESSAGES/apt.mo: OK
usr/share/locale/ko/LC_MESSAGES/apt.mo: OK
usr/share/locale/ku/LC_MESSAGES/apt.mo: OK
usr/share/locale/lt/LC_MESSAGES/apt.mo: OK
usr/share/locale/mr/LC_MESSAGES/apt.mo: OK
usr/share/locale/nb/LC_MESSAGES/apt.mo: OK
usr/share/locale/ne/LC_MESSAGES/apt.mo: OK
usr/share/locale/nl/LC_MESSAGES/apt.mo: OK
usr/share/locale/nn/LC_MESSAGES/apt.mo: OK
usr/share/locale/pl/LC_MESSAGES/apt.mo: OK
usr/share/locale/pt/LC_MESSAGES/apt.mo: OK
usr/share/locale/pt_BR/LC_MESSAGES/apt.mo: OK
usr/share/locale/ro/LC_MESSAGES/apt.mo: OK
usr/share/locale/ru/LC_MESSAGES/apt.mo: OK
usr/share/locale/sk/LC_MESSAGES/apt.mo: OK
usr/share/locale/sl/LC_MESSAGES/apt.mo: OK
usr/share/locale/sv/LC_MESSAGES/apt.mo: OK
usr/share/locale/th/LC_MESSAGES/apt.mo: OK
usr/share/locale/tl/LC_MESSAGES/apt.mo: OK
usr/share/locale/tr/LC_MESSAGES/apt.mo: OK
usr/share/locale/uk/LC_MESSAGES/apt.mo: OK
usr/share/locale/vi/LC_MESSAGES/apt.mo: OK
usr/share/locale/zh_CN/LC_MESSAGES/apt.mo: OK
usr/share/locale/zh_TW/LC_MESSAGES/apt.mo: OK
usr/share/man/de/man5/apt.conf.5.gz: OK
usr/share/man/de/man5/apt_preferences.5.gz: OK
usr/share/man/de/man8/apt-cache.8.gz: OK
usr/share/man/de/man8/apt-cdrom.8.gz: OK
usr/share/man/de/man8/apt-config.8.gz: OK
usr/share/man/de/man8/apt-get.8.gz: OK
usr/share/man/de/man8/apt-key.8.gz: OK
usr/share/man/es/man5/apt.conf.5.gz: OK
usr/share/man/es/man5/apt_preferences.5.gz: OK
usr/share/man/es/man8/apt-cache.8.gz: OK
usr/share/man/es/man8/apt-cdrom.8.gz: OK
usr/share/man/es/man8/apt-config.8.gz: OK
usr/share/man/es/man8/apt-key.8.gz: OK
usr/share/man/fr/man5/apt.conf.5.gz: OK
usr/share/man/fr/man5/apt_preferences.5.gz: OK
usr/share/man/fr/man8/apt-cache.8.gz: OK
usr/share/man/fr/man8/apt-cdrom.8.gz: OK
usr/share/man/fr/man8/apt-config.8.gz: OK
usr/share/man/fr/man8/apt-get.8.gz: OK
usr/share/man/fr/man8/apt-key.8.gz: OK
usr/share/man/it/man5/apt.conf.5.gz: OK
usr/share/man/it/man5/apt_preferences.5.gz: OK
usr/share/man/it/man5/sources.list.5.gz: OK
usr/share/man/it/man8/apt-cache.8.gz: OK
usr/share/man/it/man8/apt-cdrom.8.gz: OK
usr/share/man/it/man8/apt-config.8.gz: OK
usr/share/man/it/man8/apt-get.8.gz: OK
usr/share/man/it/man8/apt-key.8.gz: OK
usr/share/man/it/man8/apt-mark.8.gz: OK
usr/share/man/it/man8/apt-secure.8.gz: OK
usr/share/man/it/man8/apt.8.gz: OK
usr/share/man/ja/man5/apt.conf.5.gz: OK
usr/share/man/ja/man5/apt_preferences.5.gz: OK
usr/share/man/ja/man5/sources.list.5.gz: OK
usr/share/man/ja/man8/apt-cache.8.gz: OK
usr/share/man/ja/man8/apt-cdrom.8.gz: OK
usr/share/man/ja/man8/apt-config.8.gz: OK
usr/share/man/ja/man8/apt-get.8.gz: OK
usr/share/man/ja/man8/apt-key.8.gz: OK
usr/share/man/ja/man8/apt-mark.8.gz: OK
usr/share/man/ja/man8/apt-secure.8.gz: OK
usr/share/man/ja/man8/apt.8.gz: OK
usr/share/man/man5/apt.conf.5.gz: OK
usr/share/man/man5/apt_preferences.5.gz: OK
usr/share/man/man5/sources.list.5.gz: OK
usr/share/man/man8/apt-cache.8.gz: OK
usr/share/man/man8/apt-cdrom.8.gz: OK
usr/share/man/man8/apt-config.8.gz: OK
usr/share/man/man8/apt-get.8.gz: OK
usr/share/man/man8/apt-key.8.gz: OK
usr/share/man/man8/apt-mark.8.gz: OK
usr/share/man/man8/apt-secure.8.gz: OK
usr/share/man/man8/apt.8.gz: OK
usr/share/man/nl/man5/apt.conf.5.gz: OK
usr/share/man/nl/man5/apt_preferences.5.gz: OK
usr/share/man/nl/man5/sources.list.5.gz: OK
usr/share/man/nl/man8/apt-cache.8.gz: OK
usr/share/man/nl/man8/apt-cdrom.8.gz: OK
usr/share/man/nl/man8/apt-config.8.gz: OK
usr/share/man/nl/man8/apt-get.8.gz: OK
usr/share/man/nl/man8/apt-key.8.gz: OK
usr/share/man/nl/man8/apt-mark.8.gz: OK
usr/share/man/nl/man8/apt-secure.8.gz: OK
usr/share/man/nl/man8/apt.8.gz: OK
usr/share/man/pl/man5/apt_preferences.5.gz: OK
usr/share/man/pl/man8/apt-cache.8.gz: OK
usr/share/man/pl/man8/apt-cdrom.8.gz: OK
usr/share/man/pl/man8/apt-config.8.gz: OK
usr/share/man/pl/man8/apt-key.8.gz: OK
usr/share/man/pt/man5/apt.conf.5.gz: OK
usr/share/man/pt/man5/apt_preferences.5.gz: OK
usr/share/man/pt/man8/apt-cache.8.gz: OK
usr/share/man/pt/man8/apt-cdrom.8.gz: OK
usr/share/man/pt/man8/apt-config.8.gz: OK
usr/share/man/pt/man8/apt-get.8.gz: OK
usr/share/man/pt/man8/apt-key.8.gz: OK
-------------------------------
-------------------------------
running: ./dlocate -md5check packagedoesnotexist
COLUMNS="195"
TEMP=" -v --md5check -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="--md5check"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
Package packagedoesnotexist is not installed or has no md5sums.
-------------------------------
-------------------------------
running: ./dlocate -md5check xmp
COLUMNS="195"
TEMP=" -v --md5check -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="--md5check"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
usr/bin/xmp: OK
usr/lib/mime/packages/xmp: OK
usr/share/doc/xmp/CREDITS: OK
usr/share/doc/xmp/README: OK
usr/share/doc/xmp/changelog.Debian.gz: OK
usr/share/doc/xmp/changelog.gz: OK
usr/share/doc/xmp/copyright: OK
usr/share/man/man1/xmp.1.gz: OK
-------------------------------
-------------------------------
running: ./dlocate -man dlocate
COLUMNS="195"
TEMP=" -v --man -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="--man"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
1 dlocate
8 dpkg-hold
8 dpkg-purge
8 dpkg-remove
8 dpkg-unhold
8 update-dlocatedb
-------------------------------
-------------------------------
running: ./dlocate -man bash
COLUMNS="195"
TEMP=" -v --man -- 'bash'"
PKGS='([0]="bash")'
OPTION="--man"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
1 bash
1 bashbug
1 clear_console
1 rbash
7 bash-builtins
-------------------------------
-------------------------------
running: ./dlocate -man dpkg
COLUMNS="195"
TEMP=" -v --man -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="--man"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
1 dpkg
1 dpkg-deb
1 dpkg-divert
1 dpkg-maintscript-helper
1 dpkg-query
1 dpkg-split
1 dpkg-statoverride
1 dpkg-trigger
1 update-alternatives
5 dpkg.cfg
8 start-stop-daemon
-------------------------------
-------------------------------
running: ./dlocate -man apt
COLUMNS="195"
TEMP=" -v --man -- 'apt'"
PKGS='([0]="apt")'
OPTION="--man"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
5 apt.conf
5 apt_preferences
5 sources.list
8 apt
8 apt-cache
8 apt-cdrom
8 apt-config
8 apt-get
8 apt-key
8 apt-mark
8 apt-secure
-------------------------------
-------------------------------
running: ./dlocate -man packagedoesnotexist
COLUMNS="195"
TEMP=" -v --man -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="--man"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
Package packagedoesnotexist is not installed or /var/lib/dpkg/info/packagedoesnotexist.list is empty.
-------------------------------
-------------------------------
running: ./dlocate -man xmp
COLUMNS="195"
TEMP=" -v --man -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="--man"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
1 xmp
-------------------------------
-------------------------------
running: ./dlocate -lsman dlocate
COLUMNS="195"
TEMP=" -v --lsman -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="--lsman"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
/usr/share/man/man8/dpkg-purge.8.gz
/usr/share/man/man8/dpkg-remove.8.gz
/usr/share/man/man8/update-dlocatedb.8.gz
/usr/share/man/man8/dpkg-unhold.8.gz
/usr/share/man/man8/dpkg-hold.8.gz
/usr/share/man/man1/dlocate.1.gz
-------------------------------
-------------------------------
running: ./dlocate -lsman bash
COLUMNS="195"
TEMP=" -v --lsman -- 'bash'"
PKGS='([0]="bash")'
OPTION="--lsman"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
/usr/share/man/man7/bash-builtins.7.gz
/usr/share/man/man1/rbash.1.gz
/usr/share/man/man1/clear_console.1.gz
/usr/share/man/man1/bashbug.1.gz
/usr/share/man/man1/bash.1.gz
-------------------------------
-------------------------------
running: ./dlocate -lsman dpkg
COLUMNS="195"
TEMP=" -v --lsman -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="--lsman"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
/usr/share/man/de/man1/dpkg-deb.1.gz
/usr/share/man/de/man1/dpkg-divert.1.gz
/usr/share/man/de/man1/dpkg-maintscript-helper.1.gz
/usr/share/man/de/man1/dpkg-query.1.gz
/usr/share/man/de/man1/dpkg-split.1.gz
/usr/share/man/de/man1/dpkg-statoverride.1.gz
/usr/share/man/de/man1/dpkg-trigger.1.gz
/usr/share/man/de/man1/dpkg.1.gz
/usr/share/man/de/man1/update-alternatives.1.gz
/usr/share/man/de/man5/dpkg.cfg.5.gz
/usr/share/man/de/man8/start-stop-daemon.8.gz
/usr/share/man/es/man1/dpkg-divert.1.gz
/usr/share/man/es/man1/dpkg-split.1.gz
/usr/share/man/es/man1/dpkg-trigger.1.gz
/usr/share/man/es/man1/update-alternatives.1.gz
/usr/share/man/es/man5/dpkg.cfg.5.gz
/usr/share/man/es/man8/start-stop-daemon.8.gz
/usr/share/man/fr/man1/dpkg-deb.1.gz
/usr/share/man/fr/man1/dpkg-divert.1.gz
/usr/share/man/fr/man1/dpkg-maintscript-helper.1.gz
/usr/share/man/fr/man1/dpkg-query.1.gz
/usr/share/man/fr/man1/dpkg-split.1.gz
/usr/share/man/fr/man1/dpkg-statoverride.1.gz
/usr/share/man/fr/man1/dpkg-trigger.1.gz
/usr/share/man/fr/man1/update-alternatives.1.gz
/usr/share/man/fr/man5/dpkg.cfg.5.gz
/usr/share/man/fr/man8/start-stop-daemon.8.gz
/usr/share/man/hu/man5/dpkg.cfg.5.gz
/usr/share/man/it/man1/dpkg-deb.1.gz
/usr/share/man/it/man1/dpkg-maintscript-helper.1.gz
/usr/share/man/it/man1/dpkg-query.1.gz
/usr/share/man/it/man1/dpkg-split.1.gz
/usr/share/man/it/man1/dpkg-statoverride.1.gz
/usr/share/man/it/man1/update-alternatives.1.gz
/usr/share/man/it/man5/dpkg.cfg.5.gz
/usr/share/man/it/man8/start-stop-daemon.8.gz
/usr/share/man/ja/man1/dpkg-divert.1.gz
/usr/share/man/ja/man1/dpkg-split.1.gz
/usr/share/man/ja/man1/dpkg-trigger.1.gz
/usr/share/man/ja/man1/update-alternatives.1.gz
/usr/share/man/ja/man5/dpkg.cfg.5.gz
/usr/share/man/ja/man8/start-stop-daemon.8.gz
/usr/share/man/man1/dpkg-deb.1.gz
/usr/share/man/man1/dpkg-divert.1.gz
/usr/share/man/man1/dpkg-maintscript-helper.1.gz
/usr/share/man/man1/dpkg-query.1.gz
/usr/share/man/man1/dpkg-split.1.gz
/usr/share/man/man1/dpkg-statoverride.1.gz
/usr/share/man/man1/dpkg-trigger.1.gz
/usr/share/man/man1/dpkg.1.gz
/usr/share/man/man1/update-alternatives.1.gz
/usr/share/man/man5/dpkg.cfg.5.gz
/usr/share/man/man8/start-stop-daemon.8.gz
/usr/share/man/nl/man1/dpkg-deb.1.gz
/usr/share/man/nl/man1/dpkg-divert.1.gz
/usr/share/man/nl/man1/dpkg-maintscript-helper.1.gz
/usr/share/man/nl/man1/dpkg-query.1.gz
/usr/share/man/nl/man1/dpkg-split.1.gz
/usr/share/man/nl/man1/dpkg-statoverride.1.gz
/usr/share/man/nl/man1/dpkg-trigger.1.gz
/usr/share/man/nl/man1/dpkg.1.gz
/usr/share/man/nl/man1/update-alternatives.1.gz
/usr/share/man/nl/man5/dpkg.cfg.5.gz
/usr/share/man/nl/man8/start-stop-daemon.8.gz
/usr/share/man/pl/man1/dpkg-divert.1.gz
/usr/share/man/pl/man1/dpkg-split.1.gz
/usr/share/man/pl/man1/dpkg-trigger.1.gz
/usr/share/man/pl/man1/update-alternatives.1.gz
/usr/share/man/pl/man5/dpkg.cfg.5.gz
/usr/share/man/pl/man8/start-stop-daemon.8.gz
/usr/share/man/sv/man1/dpkg-deb.1.gz
/usr/share/man/sv/man1/dpkg-divert.1.gz
/usr/share/man/sv/man1/dpkg-maintscript-helper.1.gz
/usr/share/man/sv/man1/dpkg-query.1.gz
/usr/share/man/sv/man1/dpkg-split.1.gz
/usr/share/man/sv/man1/dpkg-statoverride.1.gz
/usr/share/man/sv/man1/dpkg-trigger.1.gz
/usr/share/man/sv/man1/update-alternatives.1.gz
/usr/share/man/sv/man5/dpkg.cfg.5.gz
/usr/share/man/sv/man8/start-stop-daemon.8.gz
-------------------------------
-------------------------------
running: ./dlocate -lsman apt
COLUMNS="195"
TEMP=" -v --lsman -- 'apt'"
PKGS='([0]="apt")'
OPTION="--lsman"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
/usr/share/man/de/man5/apt.conf.5.gz
/usr/share/man/de/man5/apt_preferences.5.gz
/usr/share/man/de/man8/apt-cache.8.gz
/usr/share/man/de/man8/apt-cdrom.8.gz
/usr/share/man/de/man8/apt-config.8.gz
/usr/share/man/de/man8/apt-get.8.gz
/usr/share/man/de/man8/apt-key.8.gz
/usr/share/man/es/man5/apt.conf.5.gz
/usr/share/man/es/man5/apt_preferences.5.gz
/usr/share/man/es/man8/apt-cache.8.gz
/usr/share/man/es/man8/apt-cdrom.8.gz
/usr/share/man/es/man8/apt-config.8.gz
/usr/share/man/es/man8/apt-key.8.gz
/usr/share/man/fr/man5/apt.conf.5.gz
/usr/share/man/fr/man5/apt_preferences.5.gz
/usr/share/man/fr/man8/apt-cache.8.gz
/usr/share/man/fr/man8/apt-cdrom.8.gz
/usr/share/man/fr/man8/apt-config.8.gz
/usr/share/man/fr/man8/apt-get.8.gz
/usr/share/man/fr/man8/apt-key.8.gz
/usr/share/man/it/man5/apt.conf.5.gz
/usr/share/man/it/man5/apt_preferences.5.gz
/usr/share/man/it/man5/sources.list.5.gz
/usr/share/man/it/man8/apt-cache.8.gz
/usr/share/man/it/man8/apt-cdrom.8.gz
/usr/share/man/it/man8/apt-config.8.gz
/usr/share/man/it/man8/apt-get.8.gz
/usr/share/man/it/man8/apt-key.8.gz
/usr/share/man/it/man8/apt-mark.8.gz
/usr/share/man/it/man8/apt-secure.8.gz
/usr/share/man/it/man8/apt.8.gz
/usr/share/man/ja/man5/apt.conf.5.gz
/usr/share/man/ja/man5/apt_preferences.5.gz
/usr/share/man/ja/man5/sources.list.5.gz
/usr/share/man/ja/man8/apt-cache.8.gz
/usr/share/man/ja/man8/apt-cdrom.8.gz
/usr/share/man/ja/man8/apt-config.8.gz
/usr/share/man/ja/man8/apt-get.8.gz
/usr/share/man/ja/man8/apt-key.8.gz
/usr/share/man/ja/man8/apt-mark.8.gz
/usr/share/man/ja/man8/apt-secure.8.gz
/usr/share/man/ja/man8/apt.8.gz
/usr/share/man/man5/apt.conf.5.gz
/usr/share/man/man5/apt_preferences.5.gz
/usr/share/man/man5/sources.list.5.gz
/usr/share/man/man8/apt-cache.8.gz
/usr/share/man/man8/apt-cdrom.8.gz
/usr/share/man/man8/apt-config.8.gz
/usr/share/man/man8/apt-get.8.gz
/usr/share/man/man8/apt-key.8.gz
/usr/share/man/man8/apt-mark.8.gz
/usr/share/man/man8/apt-secure.8.gz
/usr/share/man/man8/apt.8.gz
/usr/share/man/nl/man5/apt.conf.5.gz
/usr/share/man/nl/man5/apt_preferences.5.gz
/usr/share/man/nl/man5/sources.list.5.gz
/usr/share/man/nl/man8/apt-cache.8.gz
/usr/share/man/nl/man8/apt-cdrom.8.gz
/usr/share/man/nl/man8/apt-config.8.gz
/usr/share/man/nl/man8/apt-get.8.gz
/usr/share/man/nl/man8/apt-key.8.gz
/usr/share/man/nl/man8/apt-mark.8.gz
/usr/share/man/nl/man8/apt-secure.8.gz
/usr/share/man/nl/man8/apt.8.gz
/usr/share/man/pl/man5/apt_preferences.5.gz
/usr/share/man/pl/man8/apt-cache.8.gz
/usr/share/man/pl/man8/apt-cdrom.8.gz
/usr/share/man/pl/man8/apt-config.8.gz
/usr/share/man/pl/man8/apt-key.8.gz
/usr/share/man/pt/man5/apt.conf.5.gz
/usr/share/man/pt/man5/apt_preferences.5.gz
/usr/share/man/pt/man8/apt-cache.8.gz
/usr/share/man/pt/man8/apt-cdrom.8.gz
/usr/share/man/pt/man8/apt-config.8.gz
/usr/share/man/pt/man8/apt-get.8.gz
/usr/share/man/pt/man8/apt-key.8.gz
-------------------------------
-------------------------------
running: ./dlocate -lsman packagedoesnotexist
COLUMNS="195"
TEMP=" -v --lsman -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="--lsman"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
Package packagedoesnotexist is not installed or /var/lib/dpkg/info/packagedoesnotexist.list is empty.
-------------------------------
-------------------------------
running: ./dlocate -lsman xmp
COLUMNS="195"
TEMP=" -v --lsman -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="--lsman"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
/usr/share/man/man1/xmp.1.gz
-------------------------------
-------------------------------
running: ./dlocate -lsbin dlocate
COLUMNS="195"
TEMP=" -v --lsbin -- 'dlocate'"
PKGS='([0]="dlocate")'
OPTION="--lsbin"
RE_SEPARATOR="|"
PKGS_REGEXP="dlocate"
FILES_REGEXP="(dlocate)"
/etc/bash_completion.d/dlocate-completion
/etc/cron.daily/dlocate
/usr/sbin/dpkg-remove
/usr/sbin/dpkg-hold
/usr/sbin/dpkg-unhold
/usr/sbin/update-dlocatedb
/usr/sbin/dpkg-purge
/usr/bin/dlocate
-------------------------------
-------------------------------
running: ./dlocate -lsbin bash
COLUMNS="195"
TEMP=" -v --lsbin -- 'bash'"
PKGS='([0]="bash")'
OPTION="--lsbin"
RE_SEPARATOR="|"
PKGS_REGEXP="bash"
FILES_REGEXP="(bash)"
/usr/bin/clear_console
/usr/bin/bashbug
/bin/bash
-------------------------------
-------------------------------
running: ./dlocate -lsbin dpkg
COLUMNS="195"
TEMP=" -v --lsbin -- 'dpkg'"
PKGS='([0]="dpkg")'
OPTION="--lsbin"
RE_SEPARATOR="|"
PKGS_REGEXP="dpkg"
FILES_REGEXP="(dpkg)"
/etc/cron.daily/dpkg
/sbin/start-stop-daemon
/usr/bin/dpkg
/usr/bin/dpkg-deb
/usr/bin/dpkg-divert
/usr/bin/dpkg-maintscript-helper
/usr/bin/dpkg-query
/usr/bin/dpkg-split
/usr/bin/dpkg-statoverride
/usr/bin/dpkg-trigger
/usr/bin/update-alternatives
-------------------------------
-------------------------------
running: ./dlocate -lsbin apt
COLUMNS="195"
TEMP=" -v --lsbin -- 'apt'"
PKGS='([0]="apt")'
OPTION="--lsbin"
RE_SEPARATOR="|"
PKGS_REGEXP="apt"
FILES_REGEXP="(apt)"
/etc/cron.daily/apt-compat
/etc/kernel/postinst.d/apt-auto-removal
/usr/bin/apt
/usr/bin/apt-cache
/usr/bin/apt-cdrom
/usr/bin/apt-config
/usr/bin/apt-get
/usr/bin/apt-key
/usr/bin/apt-mark
/usr/lib/apt/apt-helper
/usr/lib/apt/apt.systemd.daily
/usr/lib/apt/methods/cdrom
/usr/lib/apt/methods/copy
/usr/lib/apt/methods/file
/usr/lib/apt/methods/ftp
/usr/lib/apt/methods/gpgv
/usr/lib/apt/methods/http
/usr/lib/apt/methods/mirror
/usr/lib/apt/methods/rred
/usr/lib/apt/methods/rsh
/usr/lib/apt/methods/store
/usr/lib/dpkg/methods/apt/install
/usr/lib/dpkg/methods/apt/setup
/usr/lib/dpkg/methods/apt/update
/usr/share/bug/apt/script
-------------------------------
-------------------------------
running: ./dlocate -lsbin packagedoesnotexist
COLUMNS="195"
TEMP=" -v --lsbin -- 'packagedoesnotexist'"
PKGS='([0]="packagedoesnotexist")'
OPTION="--lsbin"
RE_SEPARATOR="|"
PKGS_REGEXP="packagedoesnotexist"
FILES_REGEXP="(packagedoesnotexist)"
Package packagedoesnotexist is not installed or /var/lib/dpkg/info/packagedoesnotexist.list is empty.
-------------------------------
-------------------------------
running: ./dlocate -lsbin xmp
COLUMNS="195"
TEMP=" -v --lsbin -- 'xmp'"
PKGS='([0]="xmp")'
OPTION="--lsbin"
RE_SEPARATOR="|"
PKGS_REGEXP="xmp"
FILES_REGEXP="(xmp)"
/usr/bin/xmp
-------------------------------
|