diff --git a/docs/parsers/ls.md b/docs/parsers/ls.md index ba68082f..532d8223 100644 --- a/docs/parsers/ls.md +++ b/docs/parsers/ls.md @@ -9,6 +9,10 @@ Options supported: Note: The `-l` or `-b` option of `ls` should be used to correctly parse filenames that include newline characters. Since `ls` does not encode newlines in filenames when outputting to a pipe it will cause `jc` to see multiple files instead of a single file if `-l` or `-b` is not used. Alternatively, `vdir` can be used, which is the same as running `ls -lb`. +The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) + +The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. + Usage (cli): $ ls | jc --ls @@ -174,14 +178,16 @@ Returns: [ { - "filename": string, - "flags": string, - "links": integer, - "parent": string, - "owner": string, - "group": string, - "size": integer, - "date": string + "filename": string, + "flags": string, + "links": integer, + "parent": string, + "owner": string, + "group": string, + "size": integer, + "date": string, + "epoch": integer, # naive timestamp if date field exists and can be converted + "epoch_utc": integer # timezone aware timestamp if date field is in UTC and can be converted } ] diff --git a/jc/parsers/ls.py b/jc/parsers/ls.py index 8d2e22b9..7be38b15 100644 --- a/jc/parsers/ls.py +++ b/jc/parsers/ls.py @@ -7,6 +7,10 @@ Options supported: Note: The `-l` or `-b` option of `ls` should be used to correctly parse filenames that include newline characters. Since `ls` does not encode newlines in filenames when outputting to a pipe it will cause `jc` to see multiple files instead of a single file if `-l` or `-b` is not used. Alternatively, `vdir` can be used, which is the same as running `ls -lb`. +The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on) + +The `epoch_utc` calculated timestamp field is timezone-aware and is only available if the timezone field is UTC. + Usage (cli): $ ls | jc --ls @@ -153,7 +157,7 @@ import jc.utils class info(): - version = '1.6' + version = '1.7' description = 'ls command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -180,18 +184,19 @@ def process(proc_data): [ { - "filename": string, - "flags": string, - "links": integer, - "parent": string, - "owner": string, - "group": string, - "size": integer, - "date": string + "filename": string, + "flags": string, + "links": integer, + "parent": string, + "owner": string, + "group": string, + "size": integer, + "date": string, + "epoch": integer, # naive timestamp if date field exists and can be converted + "epoch_utc": integer # timezone aware timestamp if date field is in UTC and can be converted } ] """ - for entry in proc_data: int_list = ['links', 'size'] for key in int_list: @@ -202,6 +207,12 @@ def process(proc_data): except (ValueError): entry[key] = None + if 'date' in entry: + # to speed up processing only try to convert the date if it's not the default format + if not re.match(r'[a-zA-Z]{3}\s{1,2}\d{1,2}\s{1,2}[0-9:]{4,5}', entry['date']): + entry['epoch'] = jc.utils.parse_datetime_to_timestamp(entry['date'])['timestamp_naive'] + entry['epoch_utc'] = jc.utils.parse_datetime_to_timestamp(entry['date'])['timestamp_utc'] + return proc_data diff --git a/tests/fixtures/ubuntu-18.04/ls-l-iso.json b/tests/fixtures/ubuntu-18.04/ls-l-iso.json new file mode 100644 index 00000000..d4061b70 --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/ls-l-iso.json @@ -0,0 +1 @@ +[{"filename":"[","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51384,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"aa-enabled","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22696,"date":"2018-09-27 11:20:54.000000000 -0700","epoch":1538072454,"epoch_utc":null},{"filename":"aa-exec","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22696,"date":"2018-09-27 11:20:54.000000000 -0700","epoch":1538072454,"epoch_utc":null},{"filename":"acpi","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23656,"date":"2018-01-14 19:20:21.000000000 -0800","epoch":1515986421,"epoch_utc":null},{"filename":"acpi_listen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14608,"date":"2017-04-27 21:28:10.000000000 -0700","epoch":1493353690,"epoch_utc":null},{"filename":"add-apt-repository","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7415,"date":"2020-08-07 07:07:43.000000000 -0700","epoch":1596809263,"epoch_utc":null},{"filename":"addpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"addr2line","link_to":"x86_64-linux-gnu-addr2line","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"apport-bug","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2558,"date":"2019-11-11 13:57:56.000000000 -0800","epoch":1573509476,"epoch_utc":null},{"filename":"apport-cli","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13367,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apport-collect","link_to":"apport-bug","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apport-unpack","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1849,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"apropos","link_to":"whatis","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"apt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14424,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-add-repository","link_to":"add-apt-repository","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"2020-08-07 07:07:43.000000000 -0700","epoch":1596809263,"epoch_utc":null},{"filename":"apt-cache","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80032,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-cdrom","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22616,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-extracttemplates","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22688,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-ftparchive","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":239776,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-get","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-key","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27391,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-mark","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43168,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"apt-sortpkgs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43096,"date":"2020-12-07 03:13:36.000000000 -0800","epoch":1607339616,"epoch_utc":null},{"filename":"ar","link_to":"x86_64-linux-gnu-ar","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"arch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"as","link_to":"x86_64-linux-gnu-as","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"at","flags":"-rwsr-sr-x","links":1,"owner":"daemon","group":"daemon","size":51464,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"atq","link_to":"at","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"atrm","link_to":"at","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"automat-visualize3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":402,"date":"2017-08-28 01:55:39.000000000 -0700","epoch":1503910539,"epoch_utc":null},{"filename":"awk","link_to":"/etc/alternatives/awk","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:22:59.000000000 -0700","epoch":1565032979,"epoch_utc":null},{"filename":"b2sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"base32","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"base64","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"basename","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"bashbug","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7115,"date":"2019-06-06 15:28:15.000000000 -0700","epoch":1559860095,"epoch_utc":null},{"filename":"batch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":152,"date":"2018-02-19 22:59:43.000000000 -0800","epoch":1519109983,"epoch_utc":null},{"filename":"bc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":92872,"date":"2018-03-22 09:20:34.000000000 -0700","epoch":1521735634,"epoch_utc":null},{"filename":"bccmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":196920,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bluemoon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":75848,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bluetoothctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":203272,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"bootctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34952,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"bsd-from","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"bsd-write","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"tty","size":14328,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"btattach","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67656,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"btmgmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":314136,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"btmon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":716792,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"busctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67672,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"byobu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8264,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":996,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ctrl-a","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4774,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-disable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1295,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-disable-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1307,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-enable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1182,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-enable-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1453,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-export","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1260,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-janitor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5963,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-keybindings","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1506,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3289,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1910,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher-install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2459,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-launcher-uninstall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1561,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-layout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3348,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-prompt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1156,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-quiet","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1410,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-reconnect-sockets","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3298,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-screen","link_to":"byobu","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-backend","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1452,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-profile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6287,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-select-session","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1012,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-shell","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1599,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-silent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1306,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6015,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-status-detail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1207,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-tmux","link_to":"byobu","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ugraph","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4667,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"byobu-ulevel","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11996,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"c++","link_to":"/etc/alternatives/c++","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.966483723 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c89","link_to":"/etc/alternatives/c89","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.810468363 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c89-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":428,"date":"2006-05-07 02:28:01.000000000 -0700","epoch":1146994081,"epoch_utc":null},{"filename":"c99","link_to":"/etc/alternatives/c99","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-17 17:14:23.830470333 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c99-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":454,"date":"2011-04-11 00:54:37.000000000 -0700","epoch":1302508477,"epoch_utc":null},{"filename":"cal","link_to":"ncal","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"calc_tickadj","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2844,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"calendar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31208,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"captoinfo","link_to":"tic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"catchsegv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3329,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"catman","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39384,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"cautious-launcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":853,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"cc","link_to":"/etc/alternatives/cc","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-10-17 17:14:23.790466394 -0700","epoch":1571357663,"epoch_utc":null},{"filename":"c++filt","link_to":"x86_64-linux-gnu-c++filt","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"cftp3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":380,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"cgroupfs-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1275,"date":"2016-01-25 09:58:07.000000000 -0800","epoch":1453744687,"epoch_utc":null},{"filename":"cgroupfs-umount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":620,"date":"2016-01-25 09:58:11.000000000 -0800","epoch":1453744691,"epoch_utc":null},{"filename":"chacl","link_to":"/bin/chacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"chage","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"shadow","size":71816,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"chardet3","link_to":"chardetect3","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2017-06-18 14:51:08.000000000 -0700","epoch":1497822668,"epoch_utc":null},{"filename":"chardetect3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":389,"date":"2017-06-18 14:51:08.000000000 -0700","epoch":1497822668,"epoch_utc":null},{"filename":"chattr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14336,"date":"2020-01-22 06:40:45.000000000 -0800","epoch":1579704045,"epoch_utc":null},{"filename":"chcon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63672,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"check-language-support","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2771,"date":"2019-06-28 10:12:00.000000000 -0700","epoch":1561741920,"epoch_utc":null},{"filename":"chfn","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":76496,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"chrt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"chsh","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":44528,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"cifsiostat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34960,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"ciptool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":144984,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"ckbcomp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149838,"date":"2019-04-23 05:04:14.000000000 -0700","epoch":1556021054,"epoch_utc":null},{"filename":"ckeygen3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":386,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"cksum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"clear","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"clear_console","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-06-06 15:28:15.000000000 -0700","epoch":1559860095,"epoch_utc":null},{"filename":"cloud-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":390,"date":"2020-06-02 19:08:10.000000000 -0700","epoch":1591150090,"epoch_utc":null},{"filename":"cloud-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":394,"date":"2020-06-02 19:08:10.000000000 -0700","epoch":1591150090,"epoch_utc":null},{"filename":"cloud-init-per","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2108,"date":"2020-06-02 08:24:29.000000000 -0700","epoch":1591111469,"epoch_utc":null},{"filename":"cmp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47200,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"codepage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"col","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"col1","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":963,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col2","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col3","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col4","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col5","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col6","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col7","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col8","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"col9","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"colcrt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"colrm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"column","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"comm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"compose","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"conch3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"containerd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":46160136,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6082248,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim-runc-v1","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7498568,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-shim-runc-v2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7502728,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"containerd-stress","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21048904,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"corelist","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12835,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpan","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8156,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpan5.26-x86_64-linux-gnu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8177,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"cpp","link_to":"cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"cpp-7","link_to":"x86_64-linux-gnu-cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"c_rehash","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6332,"date":"2021-03-22 04:42:42.000000000 -0700","epoch":1616413362,"epoch_utc":null},{"filename":"crontab","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"crontab","size":39352,"date":"2017-11-15 21:29:19.000000000 -0800","epoch":1510810159,"epoch_utc":null},{"filename":"csplit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51416,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"ctail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":958,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"ctr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22699016,"date":"2020-03-19 19:13:11.000000000 -0700","epoch":1584670391,"epoch_utc":null},{"filename":"ctstat","link_to":"lnstat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"curl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":223304,"date":"2020-12-01 10:01:10.000000000 -0800","epoch":1606845670,"epoch_utc":null},{"filename":"cut","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dbus-cleanup-sockets","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-daemon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":236584,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-monitor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-run-session","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-send","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26608,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-update-activation-environment","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14320,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"dbus-uuidgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10224,"date":"2020-06-11 11:25:30.000000000 -0700","epoch":1591899930,"epoch_utc":null},{"filename":"deallocvt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"debconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2859,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-apt-progress","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11541,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-communicate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":608,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-copydb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1719,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-escape","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":647,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-set-selections","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2935,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"debconf-show","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1827,"date":"2019-05-06 09:30:30.000000000 -0700","epoch":1557160230,"epoch_utc":null},{"filename":"deb-systemd-helper","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":20142,"date":"2017-10-25 08:38:42.000000000 -0700","epoch":1508945922,"epoch_utc":null},{"filename":"deb-systemd-invoke","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4434,"date":"2017-10-25 08:38:42.000000000 -0700","epoch":1508945922,"epoch_utc":null},{"filename":"delpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"delv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":41840,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"dh_bash-completion","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2550,"date":"2018-04-01 19:16:46.000000000 -0700","epoch":1522635406,"epoch_utc":null},{"filename":"dh_pypy","link_to":"../share/dh-python/dh_pypy","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"dh_python3","link_to":"../share/dh-python/dh_python3","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"diff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145752,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"diff3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63704,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"dig","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":150024,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"dircolors","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47296,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dirmngr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":546360,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"dirmngr-client","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":109320,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"dirname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"docker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":89213816,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"dockerd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":105111664,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"docker-init","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":804408,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"docker-proxy","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2901395,"date":"2020-10-14 09:52:50.000000000 -0700","epoch":1602694370,"epoch_utc":null},{"filename":"do-release-upgrade","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9313,"date":"2020-07-09 15:58:12.000000000 -0700","epoch":1594335492,"epoch_utc":null},{"filename":"dpkg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":297472,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-architecture","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12852,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-buildflags","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7565,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-buildpackage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29796,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-checkbuilddeps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7503,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-deb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153952,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-distaddfile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2782,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-divert","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":141728,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-genbuildinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16775,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-genchanges","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":17622,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-gencontrol","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14059,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-gensymbols","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10629,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-maintscript-helper","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19031,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-mergechangelogs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8590,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-name","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6789,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-parsechangelog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4435,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-query","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149912,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-scanpackages","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8425,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-scansources","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9167,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-shlibdeps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31360,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-source","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":23300,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-split","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":121176,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-statoverride","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71936,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-trigger","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67848,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"dpkg-vendor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3262,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"du","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100568,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"dumpkeys","link_to":"/bin/dumpkeys","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:31.000000000 -0700","epoch":1565033011,"epoch_utc":null},{"filename":"dwp","link_to":"x86_64-linux-gnu-dwp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"eatmydata","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2806,"date":"2018-03-09 10:37:20.000000000 -0800","epoch":1520620640,"epoch_utc":null},{"filename":"ec2metadata","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7297,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"edit","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"editor","link_to":"/etc/alternatives/editor","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"eject","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31424,"date":"2017-03-27 21:22:15.000000000 -0700","epoch":1490674935,"epoch_utc":null},{"filename":"elfedit","link_to":"x86_64-linux-gnu-elfedit","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"enc2xs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":42153,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"encguess","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3066,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"env","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"envsubst","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"eqn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":197824,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"ex","link_to":"/etc/alternatives/ex","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"expand","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"expiry","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"shadow","size":22808,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"expr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"factor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":75992,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"faillog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18728,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"faked-sysv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26736,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"faked-tcp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30824,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fakeroot","link_to":"/etc/alternatives/fakeroot","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-10-17 17:14:22.698358852 -0700","epoch":1571357662,"epoch_utc":null},{"filename":"fakeroot-sysv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3851,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fakeroot-tcp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3846,"date":"2018-01-08 08:05:31.000000000 -0800","epoch":1515427531,"epoch_utc":null},{"filename":"fallocate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"file","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22792,"date":"2020-05-12 06:31:09.000000000 -0700","epoch":1589290269,"epoch_utc":null},{"filename":"find","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":238080,"date":"2017-11-05 09:16:48.000000000 -0800","epoch":1509902208,"epoch_utc":null},{"filename":"flock","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30880,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"fmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43192,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"fold","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"free","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18512,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"from","link_to":"/etc/alternatives/from","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"ftp","link_to":"/etc/alternatives/ftp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:23.000000000 -0700","epoch":1565033063,"epoch_utc":null},{"filename":"g++","link_to":"g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"g++-7","link_to":"x86_64-linux-gnu-g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gatttool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":277248,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"gawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":658072,"date":"2018-02-10 21:02:41.000000000 -0800","epoch":1518325361,"epoch_utc":null},{"filename":"gcc","link_to":"gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-7","link_to":"x86_64-linux-gnu-gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-ar","link_to":"gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-ar-7","link_to":"x86_64-linux-gnu-gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-nm","link_to":"gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-nm-7","link_to":"x86_64-linux-gnu-gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcc-ranlib","link_to":"gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcc-ranlib-7","link_to":"x86_64-linux-gnu-gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov","link_to":"gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-7","link_to":"x86_64-linux-gnu-gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov-dump","link_to":"gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-dump-7","link_to":"x86_64-linux-gnu-gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gcov-tool","link_to":"gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"gcov-tool-7","link_to":"x86_64-linux-gnu-gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"gencat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22752,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"geqn","link_to":"eqn","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"getconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30856,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"getent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31224,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"getfacl","link_to":"/bin/getfacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"getkeycodes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"getopt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"gettext","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"gettext.sh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4629,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"ginstall-info","link_to":"install-info","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"git","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2351792,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-receive-pack","link_to":"git","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-shell","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1309008,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-upload-archive","link_to":"git","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"git-upload-pack","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1317120,"date":"2021-03-04 05:02:54.000000000 -0800","epoch":1614862974,"epoch_utc":null},{"filename":"gold","link_to":"x86_64-linux-gnu-gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"gpasswd","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":75824,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"gpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1021512,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-agent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":402120,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgconf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":170312,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-connect-agent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":158568,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgparsemail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgsm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":502880,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgsplit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80336,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpgv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":437264,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-wks-server","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":191504,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpg-zip","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3443,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"gpic","link_to":"pic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"gprof","link_to":"x86_64-linux-gnu-gprof","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"groff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107840,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2780,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grops","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":169696,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"grotty","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":124256,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"groups","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"growpart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21883,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"grub-editenv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":245688,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-file","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":675624,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-fstest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":808600,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-glue-efi","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":241432,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-kbdcomp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1681,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-menulst2cfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":221224,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkfont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":270680,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkimage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":336728,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mklayout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":245848,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mknetdir","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":378280,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkpasswd-pbkdf2","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":249976,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkrelpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":241144,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkrescue","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":841960,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mkstandalone","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":460536,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":622808,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-ntldr-img","link_to":"../lib/grub/i386-pc/grub-ntldr-img","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-render-label","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":692392,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-script-check","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":265848,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"grub-syslinux2cfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":639672,"date":"2020-07-30 18:49:49.000000000 -0700","epoch":1596160189,"epoch_utc":null},{"filename":"gtbl","link_to":"tbl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"h2ph","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29224,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"h2xs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":60866,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"hciattach","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":137144,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hcitool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":147000,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hd","link_to":"hexdump","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"head","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"helpztags","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2514,"date":"2018-02-02 12:37:32.000000000 -0800","epoch":1517603852,"epoch_utc":null},{"filename":"hex2hcd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"hexdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26728,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"host","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129704,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"hostid","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"hostnamectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"htop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":185016,"date":"2018-02-17 10:27:46.000000000 -0800","epoch":1518892066,"epoch_utc":null},{"filename":"hwe-support-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10830,"date":"2020-06-03 11:41:50.000000000 -0700","epoch":1591209710,"epoch_utc":null},{"filename":"i386","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63744,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"igawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3189,"date":"2018-02-10 21:02:41.000000000 -0800","epoch":1518325361,"epoch_utc":null},{"filename":"info","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":251616,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"infobrowser","link_to":"/etc/alternatives/infobrowser","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:14.000000000 -0700","epoch":1565033054,"epoch_utc":null},{"filename":"infocmp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59464,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"infotocap","link_to":"tic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145664,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"install-info","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44128,"date":"2018-02-05 06:48:18.000000000 -0800","epoch":1517842098,"epoch_utc":null},{"filename":"instmodsh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4370,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ionice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iostat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55440,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"ipcmk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26768,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"ipcrm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"ipcs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51280,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"iptables-xml","link_to":"/sbin/xtables-multi","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2017-11-11 18:52:05.000000000 -0800","epoch":1510455125,"epoch_utc":null},{"filename":"ischroot","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10280,"date":"2017-12-30 10:15:02.000000000 -0800","epoch":1514657702,"epoch_utc":null},{"filename":"iscsiadm","link_to":"/sbin/iscsiadm","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":14,"date":"2020-05-10 18:27:31.000000000 -0700","epoch":1589160451,"epoch_utc":null},{"filename":"join","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"jq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2017-01-29 20:41:39.000000000 -0800","epoch":1485751299,"epoch_utc":null},{"filename":"jsondiff","link_to":"/etc/alternatives/jsondiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"jsonpatch","link_to":"/etc/alternatives/jsonpatch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":27,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"jsonpointer","link_to":"/etc/alternatives/jsonpointer","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:16.000000000 -0700","epoch":1565033056,"epoch_utc":null},{"filename":"json_pp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3959,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"jsonschema","link_to":"/etc/alternatives/jsonschema","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2019-08-05 12:24:20.000000000 -0700","epoch":1565033060,"epoch_utc":null},{"filename":"kbdinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"kbxutil","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":162496,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"keep-one-running","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"kernel-install","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4508,"date":"2018-01-28 07:58:17.000000000 -0800","epoch":1517155097,"epoch_utc":null},{"filename":"keyring","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":385,"date":"2018-01-09 04:15:19.000000000 -0800","epoch":1515500119,"epoch_utc":null},{"filename":"killall","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27768,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"l2ping","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":98152,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"l2test","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":114792,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"landscape-sysinfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":624,"date":"2020-02-20 09:35:22.000000000 -0800","epoch":1582220122,"epoch_utc":null},{"filename":"last","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lastb","link_to":"last","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lastlog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"lcf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7786,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ld","link_to":"x86_64-linux-gnu-ld","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ld.bfd","link_to":"x86_64-linux-gnu-ld.bfd","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ldd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5422,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ld.gold","link_to":"x86_64-linux-gnu-ld.gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"ld-musl-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":433,"date":"2017-01-21 11:21:39.000000000 -0800","epoch":1485026499,"epoch_utc":null},{"filename":"less","link_to":"/bin/less","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lessecho","link_to":"/bin/lessecho","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lessfile","link_to":"/bin/lessfile","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lesskey","link_to":"/bin/lesskey","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lesspipe","link_to":"/bin/lesspipe","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:23.000000000 -0700","epoch":1565033003,"epoch_utc":null},{"filename":"lexgrog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":92744,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"lft","link_to":"/etc/alternatives/lft","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2020-07-27 14:56:20.488037770 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"lft.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2493,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"libnetcfg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15775,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"link","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"linux32","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"linux64","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"linux-boot-prober","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1577,"date":"2017-01-21 07:43:27.000000000 -0800","epoch":1485013407,"epoch_utc":null},{"filename":"linux-check-removal","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4090,"date":"2016-06-20 19:48:57.000000000 -0700","epoch":1466477337,"epoch_utc":null},{"filename":"linux-update-symlinks","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6320,"date":"2016-06-04 18:13:24.000000000 -0700","epoch":1465089204,"epoch_utc":null},{"filename":"linux-version","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2696,"date":"2016-09-16 23:12:36.000000000 -0700","epoch":1474092756,"epoch_utc":null},{"filename":"lnstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22888,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"loadkeys","link_to":"/bin/loadkeys","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2019-08-05 12:23:31.000000000 -0700","epoch":1565033011,"epoch_utc":null},{"filename":"loadunimap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26760,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"locale","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":50592,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"locale-check","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2020-08-05 01:14:19.000000000 -0700","epoch":1596615259,"epoch_utc":null},{"filename":"localectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"localedef","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":338744,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"locate","link_to":"/etc/alternatives/locate","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:17.000000000 -0700","epoch":1565033057,"epoch_utc":null},{"filename":"logger","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47792,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"logname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"look","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10472,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"lorder","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2885,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"lsattr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10240,"date":"2020-01-22 06:40:45.000000000 -0800","epoch":1579704045,"epoch_utc":null},{"filename":"lsb_release","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3638,"date":"2017-08-07 14:55:07.000000000 -0700","epoch":1502142907,"epoch_utc":null},{"filename":"lscpu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71760,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lshw","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":687056,"date":"2018-07-10 07:25:42.000000000 -0700","epoch":1531232742,"epoch_utc":null},{"filename":"lsinitramfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":625,"date":"2019-10-07 03:53:35.000000000 -0700","epoch":1570445615,"epoch_utc":null},{"filename":"lsipc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71760,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lslocks","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35232,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lslogins","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63568,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsmem","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsns","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":38992,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"lsof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":163224,"date":"2015-10-28 09:57:56.000000000 -0700","epoch":1446051476,"epoch_utc":null},{"filename":"lspci","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":81584,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"lspgpot","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1081,"date":"2017-08-28 03:22:54.000000000 -0700","epoch":1503915774,"epoch_utc":null},{"filename":"lsusb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":117176,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"ltrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":333016,"date":"2016-10-12 23:20:41.000000000 -0700","epoch":1476339641,"epoch_utc":null},{"filename":"lxc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10779792,"date":"2018-11-23 10:58:51.000000000 -0800","epoch":1542999531,"epoch_utc":null},{"filename":"lxcfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-03-31 09:20:51.000000000 -0700","epoch":1585671651,"epoch_utc":null},{"filename":"lxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":105,"date":"2018-11-23 10:58:51.000000000 -0800","epoch":1542999531,"epoch_utc":null},{"filename":"lzcat","link_to":"/etc/alternatives/lzcat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzcmp","link_to":"/etc/alternatives/lzcmp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzdiff","link_to":"/etc/alternatives/lzdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzegrep","link_to":"/etc/alternatives/lzegrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzfgrep","link_to":"/etc/alternatives/lzfgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzgrep","link_to":"/etc/alternatives/lzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzless","link_to":"/etc/alternatives/lzless","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzma","link_to":"/etc/alternatives/lzma","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"lzmainfo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10384,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"lzmore","link_to":"/etc/alternatives/lzmore","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"make","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":222792,"date":"2018-04-17 05:12:28.000000000 -0700","epoch":1523967148,"epoch_utc":null},{"filename":"make-first-existing-target","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4905,"date":"2018-04-17 05:12:28.000000000 -0700","epoch":1523967148,"epoch_utc":null},{"filename":"man","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107008,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"mandb","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129760,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"manifest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1942,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"manpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"mapscrn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22664,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"mawk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125416,"date":"2018-04-03 05:34:18.000000000 -0700","epoch":1522758858,"epoch_utc":null},{"filename":"mcookie","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30864,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"md5sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"md5sum.textutils","link_to":"md5sum","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"mdig","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43136,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"mesg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"migrate-pubring-from-classic-gpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2194,"date":"2017-11-30 15:42:42.000000000 -0800","epoch":1512085362,"epoch_utc":null},{"filename":"miniterm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35098,"date":"2018-04-09 04:57:25.000000000 -0700","epoch":1523275045,"epoch_utc":null},{"filename":"mkfifo","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63672,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"mk_modmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16163,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"mksquashfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":189432,"date":"2018-07-05 12:49:18.000000000 -0700","epoch":1530820158,"epoch_utc":null},{"filename":"mlocate","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"mlocate","size":43088,"date":"2018-03-01 08:07:16.000000000 -0800","epoch":1519920436,"epoch_utc":null},{"filename":"mpstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51360,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"mtr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":73664,"date":"2017-11-01 19:48:40.000000000 -0700","epoch":1509590920,"epoch_utc":null},{"filename":"mtrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6496,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"mtr-packet","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26616,"date":"2017-11-01 19:48:40.000000000 -0700","epoch":1509590920,"epoch_utc":null},{"filename":"musl-gcc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":173,"date":"2018-02-25 09:54:30.000000000 -0800","epoch":1519581270,"epoch_utc":null},{"filename":"musl-ldd","link_to":"/lib/x86_64-linux-musl/libc.so","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"2018-02-25 09:54:30.000000000 -0800","epoch":1519581270,"epoch_utc":null},{"filename":"namei","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"nawk","link_to":"/etc/alternatives/nawk","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:22:59.000000000 -0700","epoch":1565032979,"epoch_utc":null},{"filename":"ncal","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":29480,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"ncat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":204760,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"neqn","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":908,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"netkit-ftp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":101064,"date":"2016-12-06 07:23:57.000000000 -0800","epoch":1481037837,"epoch_utc":null},{"filename":"networkd-dispatcher","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18203,"date":"2018-10-15 05:12:24.000000000 -0700","epoch":1539605544,"epoch_utc":null},{"filename":"newgidmap","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":37136,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"newgrp","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":40344,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"newuidmap","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":37136,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"NF","link_to":"col1","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"ngettext","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2019-02-21 06:40:49.000000000 -0800","epoch":1550760049,"epoch_utc":null},{"filename":"nice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nm","link_to":"x86_64-linux-gnu-nm","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"nmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2961432,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"nohup","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nping","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":530776,"date":"2018-04-15 18:11:39.000000000 -0700","epoch":1523841099,"epoch_utc":null},{"filename":"nproc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"nroff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3323,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"nsenter","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31008,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"nslookup","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":133640,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"nstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"nsupdate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67608,"date":"2021-02-15 05:08:25.000000000 -0800","epoch":1613394505,"epoch_utc":null},{"filename":"ntfsdecrypt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47224,"date":"2019-03-21 14:33:01.000000000 -0700","epoch":1553203981,"epoch_utc":null},{"filename":"ntpdc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":145544,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntpq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":188584,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntpsweep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7980,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"ntptrace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3560,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"numfmt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63736,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"obexctl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":149640,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"objcopy","link_to":"x86_64-linux-gnu-objcopy","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"objdump","link_to":"x86_64-linux-gnu-objdump","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"od","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67800,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"on_ac_power","link_to":"/sbin/on_ac_power","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"2018-03-20 06:19:42.000000000 -0700","epoch":1521551982,"epoch_utc":null},{"filename":"openssl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":723944,"date":"2021-03-22 04:42:42.000000000 -0700","epoch":1616413362,"epoch_utc":null},{"filename":"os-prober","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4551,"date":"2017-01-31 12:30:39.000000000 -0800","epoch":1485894639,"epoch_utc":null},{"filename":"pager","link_to":"/etc/alternatives/pager","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:04.000000000 -0700","epoch":1565032984,"epoch_utc":null},{"filename":"partx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":88144,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"passwd","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":59640,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"paste","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pastebinit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":16642,"date":"2016-02-29 21:52:32.000000000 -0800","epoch":1456811552,"epoch_utc":null},{"filename":"patch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":182648,"date":"2019-07-23 05:12:54.000000000 -0700","epoch":1563883974,"epoch_utc":null},{"filename":"pathchk","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pbget","link_to":"pbput","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2018-04-15 08:38:02.000000000 -0700","epoch":1523806682,"epoch_utc":null},{"filename":"pbput","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2569,"date":"2016-02-29 08:14:33.000000000 -0800","epoch":1456762473,"epoch_utc":null},{"filename":"pbputs","link_to":"pbput","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2018-04-15 08:38:02.000000000 -0700","epoch":1523806682,"epoch_utc":null},{"filename":"pcimodules","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14472,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"pdb3","link_to":"pdb3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pdb3.6","link_to":"../lib/python3.6/pdb.py","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"peekfd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"perl","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":2097720,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perl5.26.1","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":2097720,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perl5.26-x86_64-linux-gnu","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10216,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlbug","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":45853,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perldoc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":125,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlivp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10864,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"perlthanks","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":45853,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pftp","link_to":"/etc/alternatives/pftp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:23.000000000 -0700","epoch":1565033063,"epoch_utc":null},{"filename":"pgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26712,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":208928,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"pico","link_to":"/etc/alternatives/pico","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:20.000000000 -0700","epoch":1565033060,"epoch_utc":null},{"filename":"piconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8357,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pidstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63648,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"pigz","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":116944,"date":"2017-12-27 11:41:06.000000000 -0800","epoch":1514403666,"epoch_utc":null},{"filename":"pinentry","link_to":"/etc/alternatives/pinentry","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:35.000000000 -0700","epoch":1565033075,"epoch_utc":null},{"filename":"pinentry-curses","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":63992,"date":"2018-02-05 17:18:30.000000000 -0800","epoch":1517879910,"epoch_utc":null},{"filename":"pinky","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"pip3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":293,"date":"2020-10-22 07:40:50.000000000 -0700","epoch":1603377650,"epoch_utc":null},{"filename":"pkaction","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkcheck","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkexec","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":22520,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pkg-config","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":51296,"date":"2017-04-21 13:54:08.000000000 -0700","epoch":1492808048,"epoch_utc":null},{"filename":"pkill","link_to":"pgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pkttyagent","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-03-27 06:57:02.000000000 -0700","epoch":1553695022,"epoch_utc":null},{"filename":"pl2pm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4533,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pldd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18656,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"pmap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30808,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"pod2html","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4134,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2man","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15079,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2text","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10979,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pod2usage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3948,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"podchecker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3658,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"podselect","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2527,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"pollinate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8744,"date":"2018-05-29 13:13:20.000000000 -0700","epoch":1527624800,"epoch_utc":null},{"filename":"pr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71960,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"preconv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47304,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"print","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"printenv","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"printerbanner","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22528,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"printf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51384,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"prlimit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35424,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"prove","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":13588,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"prtstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"psfaddtable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfgettable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfstriptable","link_to":"psfxtable","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"psfxtable","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"pslog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"pstree","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27592,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"pstree.x11","link_to":"pstree","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2018-12-11 07:46:04.000000000 -0800","epoch":1544543164,"epoch_utc":null},{"filename":"ptar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3549,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptardiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2628,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptargrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4392,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"ptx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71928,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"purge-old-kernels","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1149,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"pwdx","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"py3clean","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":7812,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"py3compile","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":12119,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"py3versions","link_to":"../share/python3/py3versions.py","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":31,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pybuild","link_to":"../share/dh-python/pybuild","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2018-03-26 12:42:23.000000000 -0700","epoch":1522093343,"epoch_utc":null},{"filename":"pydoc3","link_to":"pydoc3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pydoc3.6","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":79,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"pygettext3","link_to":"pygettext3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"pygettext3.6","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":21547,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"pyhtmlizer3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":392,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"pyjwt3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":372,"date":"2017-09-25 12:23:43.000000000 -0700","epoch":1506367423,"epoch_utc":null},{"filename":"python3","link_to":"python3.6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":9,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3.6","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":4526456,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6-config","link_to":"x86_64-linux-gnu-python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6m","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":4526456,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3.6m-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"python3-config","link_to":"python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3-jsondiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1018,"date":"2017-10-28 13:10:15.000000000 -0700","epoch":1509221415,"epoch_utc":null},{"filename":"python3-jsonpatch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3661,"date":"2017-10-28 13:10:15.000000000 -0700","epoch":1509221415,"epoch_utc":null},{"filename":"python3-jsonpointer","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1342,"date":"2016-05-01 16:14:11.000000000 -0700","epoch":1462144451,"epoch_utc":null},{"filename":"python3-jsonschema","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":398,"date":"2017-11-15 11:43:29.000000000 -0800","epoch":1510775009,"epoch_utc":null},{"filename":"python3m","link_to":"python3.6m","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"python3m-config","link_to":"python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":17,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"ranlib","link_to":"x86_64-linux-gnu-ranlib","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"rcp","link_to":"/etc/alternatives/rcp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"rctest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":144840,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"rdma","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26696,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"readelf","link_to":"x86_64-linux-gnu-readelf","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"realpath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"rename.ul","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"renice","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"reset","link_to":"tset","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"resizecons","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18568,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"resizepart","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":38992,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"rev","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"rfcomm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":107032,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"rgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30,"date":"2017-07-11 06:19:59.000000000 -0700","epoch":1499779199,"epoch_utc":null},{"filename":"rjc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":87229416,"date":"2020-04-14 12:53:49.741997779 -0700","epoch":1586894029,"epoch_utc":null},{"filename":"rlogin","link_to":"/etc/alternatives/rlogin","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"routef","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":208,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"routel","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1656,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"rpcgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100896,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"rsh","link_to":"/etc/alternatives/rsh","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:40.000000000 -0700","epoch":1565033080,"epoch_utc":null},{"filename":"rsync","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":500024,"date":"2020-02-18 13:03:13.000000000 -0800","epoch":1582059793,"epoch_utc":null},{"filename":"rtstat","link_to":"lnstat","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2020-07-15 08:16:31.000000000 -0700","epoch":1594826191,"epoch_utc":null},{"filename":"runcon","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"run-mailcap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18161,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"run-one","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3592,"date":"2014-01-15 14:24:04.000000000 -0800","epoch":1389824644,"epoch_utc":null},{"filename":"run-one-constantly","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-one-until-failure","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-one-until-success","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"run-this-one","link_to":"run-one","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2014-01-15 14:40:51.000000000 -0800","epoch":1389825651,"epoch_utc":null},{"filename":"rview","link_to":"/etc/alternatives/rview","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"rvim","link_to":"/etc/alternatives/rvim","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"sadf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":313824,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"sar","link_to":"/etc/alternatives/sar","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-10-30 14:02:28.138438060 -0700","epoch":1572469348,"epoch_utc":null},{"filename":"sar.sysstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":120720,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"savelog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10469,"date":"2017-12-30 10:15:02.000000000 -0800","epoch":1514657702,"epoch_utc":null},{"filename":"scp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":100496,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"screen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":465928,"date":"2021-02-23 09:46:52.000000000 -0800","epoch":1614102412,"epoch_utc":null},{"filename":"screendump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"script","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30792,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"scriptreplay","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"sdiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51296,"date":"2017-08-04 14:20:16.000000000 -0700","epoch":1501881616,"epoch_utc":null},{"filename":"sdptool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":209848,"date":"2020-03-23 05:26:28.000000000 -0700","epoch":1584966388,"epoch_utc":null},{"filename":"see","link_to":"run-mailcap","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2016-07-15 05:06:12.000000000 -0700","epoch":1468584372,"epoch_utc":null},{"filename":"select-editor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2442,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-browser","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1209,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-editor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1109,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"sensible-pager","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":433,"date":"2018-03-12 03:17:53.000000000 -0700","epoch":1520849873,"epoch_utc":null},{"filename":"seq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"setarch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18784,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"setfacl","link_to":"/bin/setfacl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"setkeycodes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setleds","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14392,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setlogcons","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setmetamode","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10344,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"setpci","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2019-02-10 10:25:12.000000000 -0800","epoch":1549823112,"epoch_utc":null},{"filename":"setsid","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"setterm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43088,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"sftp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153960,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"sg","link_to":"newgrp","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-03-22 12:05:38.000000000 -0700","epoch":1553281538,"epoch_utc":null},{"filename":"sha1sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47320,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha224sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha256sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55512,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha384sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sha512sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"shasum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":9371,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"showconsolefont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"showkey","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"shred","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59608,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"shuf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55480,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"size","link_to":"x86_64-linux-gnu-size","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"skill","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26704,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"slabtop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18512,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"slogin","link_to":"ssh","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":3,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"slurm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34824,"date":"2018-04-03 05:43:49.000000000 -0700","epoch":1522759429,"epoch_utc":null},{"filename":"snap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19428040,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snapctl","link_to":"../lib/snapd/snapctl","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snapfuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39048,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"snice","link_to":"skill","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"sntp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":165384,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"soelim","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30920,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"sort","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":113120,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"sosreport","link_to":"../share/sosreport/sosreport","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-07 12:34:42.000000000 -0700","epoch":1594150482,"epoch_utc":null},{"filename":"sotruss","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4308,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"splain","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19150,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"split","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55936,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"splitfont","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"sprof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26840,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ssh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":727848,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-add","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":346248,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-agent","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"ssh","size":362640,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-argv0","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1456,"date":"2018-01-16 09:39:31.000000000 -0800","epoch":1516124371,"epoch_utc":null},{"filename":"ssh-copy-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10658,"date":"2017-10-02 12:34:26.000000000 -0700","epoch":1506972866,"epoch_utc":null},{"filename":"ssh-import-id","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1771,"date":"2018-05-16 16:40:43.000000000 -0700","epoch":1526514043,"epoch_utc":null},{"filename":"ssh-import-id-gh","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":782,"date":"2016-01-29 21:11:11.000000000 -0800","epoch":1454130671,"epoch_utc":null},{"filename":"ssh-import-id-lp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":782,"date":"2016-01-29 21:11:25.000000000 -0800","epoch":1454130685,"epoch_utc":null},{"filename":"ssh-keygen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":420000,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"ssh-keyscan","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":420000,"date":"2019-03-04 04:17:51.000000000 -0800","epoch":1551701871,"epoch_utc":null},{"filename":"stat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":80088,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"stdbuf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"strace","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1378552,"date":"2018-04-11 07:18:47.000000000 -0700","epoch":1523456327,"epoch_utc":null},{"filename":"strace-log-merge","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2644,"date":"2018-02-13 15:00:00.000000000 -0800","epoch":1518562800,"epoch_utc":null},{"filename":"strings","link_to":"x86_64-linux-gnu-strings","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"strip","link_to":"x86_64-linux-gnu-strip","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"sudo","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":149080,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sudoedit","link_to":"sudo","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":4,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sudoreplay","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":56128,"date":"2021-01-19 06:36:00.000000000 -0800","epoch":1611066960,"epoch_utc":null},{"filename":"sum","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39104,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"symcryptrun","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":113384,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"systemd-analyze","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1558792,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cgls","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-cgtop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30816,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-delta","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-detect-virt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10304,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-mount","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43104,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-path","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10304,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-resolve","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":88136,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-run","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43080,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-socket-activate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-stdio-bridge","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"systemd-umount","link_to":"systemd-mount","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"tabs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tac","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tail","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":67832,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tapestat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39056,"date":"2020-01-17 03:24:09.000000000 -0800","epoch":1579260249,"epoch_utc":null},{"filename":"taskset","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"tbl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129224,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"tee","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35032,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"telnet","link_to":"/etc/alternatives/telnet","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:24:22.000000000 -0700","epoch":1565033062,"epoch_utc":null},{"filename":"telnet.netkit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":111024,"date":"2016-11-07 10:06:40.000000000 -0800","epoch":1478542000,"epoch_utc":null},{"filename":"test","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":84080,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"time","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14720,"date":"2017-04-21 13:57:03.000000000 -0700","epoch":1492808223,"epoch_utc":null},{"filename":"timedatectl","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-07-08 11:59:14.000000000 -0700","epoch":1594234754,"epoch_utc":null},{"filename":"timeout","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39552,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tkconch3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":386,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"tload","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14424,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"tmux","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":577088,"date":"2019-07-04 12:45:07.000000000 -0700","epoch":1562269507,"epoch_utc":null},{"filename":"toe","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"top","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":108304,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"touch","link_to":"/bin/touch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:23:03.000000000 -0700","epoch":1565032983,"epoch_utc":null},{"filename":"tput","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18456,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47288,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tracepath","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2019-06-28 04:05:23.000000000 -0700","epoch":1561719923,"epoch_utc":null},{"filename":"traceproto","link_to":"/etc/alternatives/traceproto","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-27 14:56:20.508049125 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"traceproto.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2885,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute","link_to":"/etc/alternatives/traceroute","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":28,"date":"2020-07-27 14:56:20.460021872 -0700","epoch":1595886980,"epoch_utc":null},{"filename":"traceroute6","link_to":"/etc/alternatives/traceroute6","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":29,"date":"2019-08-05 12:24:21.000000000 -0700","epoch":1565033061,"epoch_utc":null},{"filename":"traceroute6.db","link_to":"traceroute.db","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":13,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute6.iputils","flags":"-rwsr-xr-x","links":1,"owner":"root","group":"root","size":18448,"date":"2019-06-28 04:05:23.000000000 -0700","epoch":1561719923,"epoch_utc":null},{"filename":"traceroute.db","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":68768,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"traceroute-nanog","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1618,"date":"2016-08-29 08:45:51.000000000 -0700","epoch":1472485551,"epoch_utc":null},{"filename":"trial3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"troff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":736608,"date":"2018-02-09 18:09:07.000000000 -0800","epoch":1518228547,"epoch_utc":null},{"filename":"truncate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39096,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tset","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22528,"date":"2018-05-23 01:08:27.000000000 -0700","epoch":1527062907,"epoch_utc":null},{"filename":"tsort","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"tty","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"twist3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":382,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"twistd3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":384,"date":"2020-03-16 10:24:46.000000000 -0700","epoch":1584379486,"epoch_utc":null},{"filename":"tzselect","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":15397,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"ua","link_to":"ubuntu-advantage","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":16,"date":"2018-03-21 10:20:04.000000000 -0700","epoch":1521652804,"epoch_utc":null},{"filename":"ubuntu-advantage","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4596,"date":"2018-03-21 10:20:04.000000000 -0700","epoch":1521652804,"epoch_utc":null},{"filename":"ubuntu-bug","link_to":"apport-bug","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2021-01-26 04:21:46.000000000 -0800","epoch":1611663706,"epoch_utc":null},{"filename":"ubuntu-core-launcher","link_to":"../lib/snapd/snap-confine","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2021-02-02 00:21:12.000000000 -0800","epoch":1612254072,"epoch_utc":null},{"filename":"ubuntu-support-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":8033,"date":"2020-06-03 11:41:50.000000000 -0700","epoch":1591209710,"epoch_utc":null},{"filename":"ucf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":40685,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ucfq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":19367,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ucfr","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10722,"date":"2018-02-25 16:58:23.000000000 -0800","epoch":1519606703,"epoch_utc":null},{"filename":"ul","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14344,"date":"2018-01-17 03:27:24.000000000 -0800","epoch":1516188444,"epoch_utc":null},{"filename":"unattended-upgrade","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":84529,"date":"2020-02-17 03:37:03.000000000 -0800","epoch":1581939423,"epoch_utc":null},{"filename":"unattended-upgrades","link_to":"unattended-upgrade","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":18,"date":"2020-02-17 03:37:03.000000000 -0800","epoch":1581939423,"epoch_utc":null},{"filename":"unexpand","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39128,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unicode_stop","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":530,"date":"2018-01-22 05:49:48.000000000 -0800","epoch":1516628988,"epoch_utc":null},{"filename":"uniq","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43224,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unlink","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"unlzma","link_to":"/etc/alternatives/unlzma","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2019-08-05 12:23:24.000000000 -0700","epoch":1565033004,"epoch_utc":null},{"filename":"unmkinitramfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2859,"date":"2019-10-07 03:53:35.000000000 -0700","epoch":1570445615,"epoch_utc":null},{"filename":"unpigz","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":116944,"date":"2017-12-27 11:41:06.000000000 -0800","epoch":1514403666,"epoch_utc":null},{"filename":"unshare","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18712,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"unsquashfs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":98008,"date":"2018-07-05 12:49:18.000000000 -0700","epoch":1530820158,"epoch_utc":null},{"filename":"unxz","link_to":"xz","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"update-alternatives","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47112,"date":"2019-09-05 14:05:14.000000000 -0700","epoch":1567717514,"epoch_utc":null},{"filename":"updatedb","link_to":"/etc/alternatives/updatedb","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":26,"date":"2019-08-05 12:24:17.000000000 -0700","epoch":1565033057,"epoch_utc":null},{"filename":"updatedb.mlocate","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":47184,"date":"2018-03-01 08:07:16.000000000 -0800","epoch":1519920436,"epoch_utc":null},{"filename":"update-leap","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":11635,"date":"2020-08-17 18:58:51.000000000 -0700","epoch":1597715931,"epoch_utc":null},{"filename":"update-mime-database","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51392,"date":"2017-10-10 13:56:05.000000000 -0700","epoch":1507668965,"epoch_utc":null},{"filename":"upower","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2019-01-25 08:38:41.000000000 -0800","epoch":1548434321,"epoch_utc":null},{"filename":"uptime","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"usb-devices","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":4216,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"usbhid-dump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22608,"date":"2017-04-21 13:59:17.000000000 -0700","epoch":1492808357,"epoch_utc":null},{"filename":"users","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":35000,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"utmpdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22600,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"uuidgen","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14408,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"uuidparse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34896,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"vcs-run","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6913,"date":"2018-04-13 06:07:55.000000000 -0700","epoch":1523624875,"epoch_utc":null},{"filename":"VGAuthService","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":129248,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vi","link_to":"/etc/alternatives/vi","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":20,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"view","link_to":"/etc/alternatives/view","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":22,"date":"2019-08-05 12:23:26.000000000 -0700","epoch":1565033006,"epoch_utc":null},{"filename":"vigpg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2640,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"vim","link_to":"/etc/alternatives/vim","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":21,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"vim.basic","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2675336,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vimdiff","link_to":"/etc/alternatives/vimdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":25,"date":"2019-08-05 12:24:27.000000000 -0700","epoch":1565033067,"epoch_utc":null},{"filename":"vim.tiny","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1108024,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vimtutor","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2099,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"vmhgfs-fuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51696,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmstat","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":34912,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"vmtoolsd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":55552,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-checkvm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-hgfsclient","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-namespace-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-rpctool","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18424,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-toolbox-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":39200,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vgauth-cmd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vgauth-smoketest","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18440,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-vmblock-fuse","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18848,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"vmware-xferlogs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10312,"date":"2020-03-25 03:33:50.000000000 -0700","epoch":1585132430,"epoch_utc":null},{"filename":"volname","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":10232,"date":"2017-03-27 21:22:15.000000000 -0700","epoch":1490674935,"epoch_utc":null},{"filename":"w","link_to":"/etc/alternatives/w","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":19,"date":"2019-08-05 12:23:04.000000000 -0700","epoch":1565032984,"epoch_utc":null},{"filename":"wall","flags":"-rwxr-sr-x","links":1,"owner":"root","group":"tty","size":30800,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"watch","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22952,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"watchgnupg","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":14328,"date":"2020-09-17 06:57:57.000000000 -0700","epoch":1600351077,"epoch_utc":null},{"filename":"wc","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":43200,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"wget","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":499264,"date":"2019-04-08 11:51:50.000000000 -0700","epoch":1554749510,"epoch_utc":null},{"filename":"whatis","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":48104,"date":"2018-08-04 12:16:12.000000000 -0700","epoch":1533410172,"epoch_utc":null},{"filename":"whereis","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":27144,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"which","link_to":"/bin/which","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":10,"date":"2019-08-05 12:23:03.000000000 -0700","epoch":1565032983,"epoch_utc":null},{"filename":"who","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":51416,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"whoami","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"wifi-status","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2107,"date":"2017-12-04 05:46:48.000000000 -0800","epoch":1512395208,"epoch_utc":null},{"filename":"wmdocker","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":22536,"date":"2018-04-03 05:19:52.000000000 -0700","epoch":1522757992,"epoch_utc":null},{"filename":"w.procps","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2019-08-09 08:37:27.000000000 -0700","epoch":1565365047,"epoch_utc":null},{"filename":"write","link_to":"/etc/alternatives/write","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2019-08-05 12:24:25.000000000 -0700","epoch":1565033065,"epoch_utc":null},{"filename":"x86_64","link_to":"setarch","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":7,"date":"2020-09-16 11:43:15.000000000 -0700","epoch":1600281795,"epoch_utc":null},{"filename":"x86_64-linux-gnu-addr2line","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31280,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ar","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59640,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-as","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":917488,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-c++filt","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":26744,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-cpp","link_to":"cpp-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-cpp-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-dwp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2886928,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-elfedit","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31184,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-g++","link_to":"g++-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-g++-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc","link_to":"gcc-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":5,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1047488,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ar","link_to":"gcc-ar-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ar-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-nm","link_to":"gcc-nm-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":8,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-nm-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ranlib","link_to":"gcc-ranlib-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":12,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcc-ranlib-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31200,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov","link_to":"gcov-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":630880,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-dump","link_to":"gcov-dump-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-dump-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":511928,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-tool","link_to":"gcov-tool-7","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":11,"date":"2019-05-20 09:08:41.000000000 -0700","epoch":1558368521,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gcov-tool-7","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":548856,"date":"2019-12-04 06:25:41.000000000 -0800","epoch":1575469541,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gold","link_to":"x86_64-linux-gnu-ld.gold","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":24,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-gprof","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":102120,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld","link_to":"x86_64-linux-gnu-ld.bfd","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":23,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld.bfd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1783496,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ld.gold","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3111952,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-nm","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":44312,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-objcopy","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":235720,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-objdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":414256,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-pkg-config","link_to":"/usr/share/pkg-config-crosswrapper","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2020-04-14 09:35:39.217683591 -0700","epoch":1586882139,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3.6-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3.6m-config","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":3283,"date":"2021-01-26 07:33:00.000000000 -0800","epoch":1611675180,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3-config","link_to":"x86_64-linux-gnu-python3.6-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"x86_64-linux-gnu-python3m-config","link_to":"x86_64-linux-gnu-python3.6m-config","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":34,"date":"2018-10-25 04:11:00.000000000 -0700","epoch":1540465860,"epoch_utc":null},{"filename":"x86_64-linux-gnu-ranlib","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":59672,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-readelf","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":596440,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-size","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31024,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-strings","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":31232,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-linux-gnu-strip","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":235728,"date":"2021-02-12 00:45:35.000000000 -0800","epoch":1613119535,"epoch_utc":null},{"filename":"x86_64-pc-linux-gnu-pkg-config","flags":"-rwxr-xr-x","links":2,"owner":"root","group":"root","size":51296,"date":"2017-04-21 13:54:08.000000000 -0700","epoch":1492808048,"epoch_utc":null},{"filename":"xargs","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":71896,"date":"2017-11-05 09:16:48.000000000 -0800","epoch":1509902208,"epoch_utc":null},{"filename":"xauth","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":52032,"date":"2017-11-21 11:47:37.000000000 -0800","epoch":1511293657,"epoch_utc":null},{"filename":"xdelta3","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":153904,"date":"2016-12-05 18:04:51.000000000 -0800","epoch":1480989891,"epoch_utc":null},{"filename":"xdg-user-dir","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":234,"date":"2018-03-23 08:58:57.000000000 -0700","epoch":1521820737,"epoch_utc":null},{"filename":"xdg-user-dirs-update","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18504,"date":"2018-03-23 08:58:57.000000000 -0700","epoch":1521820737,"epoch_utc":null},{"filename":"xsubpp","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5164,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null},{"filename":"xxd","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18552,"date":"2020-10-13 08:49:09.000000000 -0700","epoch":1602604149,"epoch_utc":null},{"filename":"xz","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":76216,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzcat","link_to":"xz","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":2,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzcmp","link_to":"xzdiff","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzdiff","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":6632,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzegrep","link_to":"xzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzfgrep","link_to":"xzgrep","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":6,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzgrep","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":5628,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzless","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":1802,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"xzmore","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":2161,"date":"2017-06-28 09:39:19.000000000 -0700","epoch":1498667959,"epoch_utc":null},{"filename":"yes","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":30904,"date":"2018-01-18 01:43:49.000000000 -0800","epoch":1516268629,"epoch_utc":null},{"filename":"zdump","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":18488,"date":"2020-06-04 10:25:26.000000000 -0700","epoch":1591291526,"epoch_utc":null},{"filename":"zipdetails\n","flags":"-rwxr-xr-x","links":1,"owner":"root","group":"root","size":48497,"date":"2020-10-19 03:57:24.000000000 -0700","epoch":1603105044,"epoch_utc":null}] diff --git a/tests/fixtures/ubuntu-18.04/ls-l-iso.out b/tests/fixtures/ubuntu-18.04/ls-l-iso.out new file mode 100644 index 00000000..4f2bdcdd --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/ls-l-iso.out @@ -0,0 +1,883 @@ +total 502016 +-rwxr-xr-x 1 root root 51384 2018-01-18 01:43:49.000000000 -0800 [ +-rwxr-xr-x 1 root root 22696 2018-09-27 11:20:54.000000000 -0700 aa-enabled +-rwxr-xr-x 1 root root 22696 2018-09-27 11:20:54.000000000 -0700 aa-exec +-rwxr-xr-x 1 root root 23656 2018-01-14 19:20:21.000000000 -0800 acpi +-rwxr-xr-x 1 root root 14608 2017-04-27 21:28:10.000000000 -0700 acpi_listen +-rwxr-xr-x 1 root root 7415 2020-08-07 07:07:43.000000000 -0700 add-apt-repository +-rwxr-xr-x 1 root root 22608 2020-09-16 11:43:15.000000000 -0700 addpart +lrwxrwxrwx 1 root root 26 2021-02-12 00:45:35.000000000 -0800 addr2line -> x86_64-linux-gnu-addr2line +-rwxr-xr-x 1 root root 2558 2019-11-11 13:57:56.000000000 -0800 apport-bug +-rwxr-xr-x 1 root root 13367 2021-01-26 04:21:46.000000000 -0800 apport-cli +lrwxrwxrwx 1 root root 10 2021-01-26 04:21:46.000000000 -0800 apport-collect -> apport-bug +-rwxr-xr-x 1 root root 1849 2021-01-26 04:21:46.000000000 -0800 apport-unpack +lrwxrwxrwx 1 root root 6 2018-08-04 12:16:12.000000000 -0700 apropos -> whatis +-rwxr-xr-x 1 root root 14424 2020-12-07 03:13:36.000000000 -0800 apt +lrwxrwxrwx 1 root root 18 2020-08-07 07:07:43.000000000 -0700 apt-add-repository -> add-apt-repository +-rwxr-xr-x 1 root root 80032 2020-12-07 03:13:36.000000000 -0800 apt-cache +-rwxr-xr-x 1 root root 22688 2020-12-07 03:13:36.000000000 -0800 apt-cdrom +-rwxr-xr-x 1 root root 22616 2020-12-07 03:13:36.000000000 -0800 apt-config +-rwxr-xr-x 1 root root 22688 2020-12-07 03:13:36.000000000 -0800 apt-extracttemplates +-rwxr-xr-x 1 root root 239776 2020-12-07 03:13:36.000000000 -0800 apt-ftparchive +-rwxr-xr-x 1 root root 43168 2020-12-07 03:13:36.000000000 -0800 apt-get +-rwxr-xr-x 1 root root 27391 2020-12-07 03:13:36.000000000 -0800 apt-key +-rwxr-xr-x 1 root root 43168 2020-12-07 03:13:36.000000000 -0800 apt-mark +-rwxr-xr-x 1 root root 43096 2020-12-07 03:13:36.000000000 -0800 apt-sortpkgs +lrwxrwxrwx 1 root root 19 2021-02-12 00:45:35.000000000 -0800 ar -> x86_64-linux-gnu-ar +-rwxr-xr-x 1 root root 35032 2018-01-18 01:43:49.000000000 -0800 arch +lrwxrwxrwx 1 root root 19 2021-02-12 00:45:35.000000000 -0800 as -> x86_64-linux-gnu-as +-rwsr-sr-x 1 daemon daemon 51464 2018-02-19 22:59:43.000000000 -0800 at +lrwxrwxrwx 1 root root 2 2018-02-19 22:59:43.000000000 -0800 atq -> at +lrwxrwxrwx 1 root root 2 2018-02-19 22:59:43.000000000 -0800 atrm -> at +-rwxr-xr-x 1 root root 402 2017-08-28 01:55:39.000000000 -0700 automat-visualize3 +lrwxrwxrwx 1 root root 21 2019-08-05 12:22:59.000000000 -0700 awk -> /etc/alternatives/awk +-rwxr-xr-x 1 root root 55512 2018-01-18 01:43:49.000000000 -0800 b2sum +-rwxr-xr-x 1 root root 39096 2018-01-18 01:43:49.000000000 -0800 base32 +-rwxr-xr-x 1 root root 39096 2018-01-18 01:43:49.000000000 -0800 base64 +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 basename +-rwxr-xr-x 1 root root 7115 2019-06-06 15:28:15.000000000 -0700 bashbug +-rwxr-xr-x 1 root root 152 2018-02-19 22:59:43.000000000 -0800 batch +-rwxr-xr-x 1 root root 92872 2018-03-22 09:20:34.000000000 -0700 bc +-rwxr-xr-x 1 root root 196920 2020-03-23 05:26:28.000000000 -0700 bccmd +-rwxr-xr-x 1 root root 75848 2020-03-23 05:26:28.000000000 -0700 bluemoon +-rwxr-xr-x 1 root root 203272 2020-03-23 05:26:28.000000000 -0700 bluetoothctl +-rwxr-xr-x 1 root root 34952 2020-07-08 11:59:14.000000000 -0700 bootctl +-rwxr-xr-x 1 root root 10232 2018-01-17 03:27:24.000000000 -0800 bsd-from +-rwxr-sr-x 1 root tty 14328 2018-01-17 03:27:24.000000000 -0800 bsd-write +-rwxr-xr-x 1 root root 67656 2020-03-23 05:26:28.000000000 -0700 btattach +-rwxr-xr-x 1 root root 314136 2020-03-23 05:26:28.000000000 -0700 btmgmt +-rwxr-xr-x 1 root root 716792 2020-03-23 05:26:28.000000000 -0700 btmon +-rwxr-xr-x 1 root root 67672 2020-07-08 11:59:14.000000000 -0700 busctl +-rwxr-xr-x 1 root root 8264 2017-12-04 05:46:48.000000000 -0800 byobu +-rwxr-xr-x 1 root root 996 2017-12-04 05:46:48.000000000 -0800 byobu-config +-rwxr-xr-x 1 root root 4774 2017-12-04 05:46:48.000000000 -0800 byobu-ctrl-a +-rwxr-xr-x 1 root root 1295 2017-12-04 05:46:48.000000000 -0800 byobu-disable +-rwxr-xr-x 1 root root 1307 2017-12-04 05:46:48.000000000 -0800 byobu-disable-prompt +-rwxr-xr-x 1 root root 1182 2017-12-04 05:46:48.000000000 -0800 byobu-enable +-rwxr-xr-x 1 root root 1453 2017-12-04 05:46:48.000000000 -0800 byobu-enable-prompt +-rwxr-xr-x 1 root root 1260 2017-12-04 05:46:48.000000000 -0800 byobu-export +-rwxr-xr-x 1 root root 5963 2017-12-04 05:46:48.000000000 -0800 byobu-janitor +-rwxr-xr-x 1 root root 1506 2017-12-04 05:46:48.000000000 -0800 byobu-keybindings +-rwxr-xr-x 1 root root 3289 2017-12-04 05:46:48.000000000 -0800 byobu-launch +-rwxr-xr-x 1 root root 1910 2017-12-04 05:46:48.000000000 -0800 byobu-launcher +-rwxr-xr-x 1 root root 2459 2017-12-04 05:46:48.000000000 -0800 byobu-launcher-install +-rwxr-xr-x 1 root root 1561 2017-12-04 05:46:48.000000000 -0800 byobu-launcher-uninstall +-rwxr-xr-x 1 root root 3348 2017-12-04 05:46:48.000000000 -0800 byobu-layout +-rwxr-xr-x 1 root root 1156 2017-12-04 05:46:48.000000000 -0800 byobu-prompt +-rwxr-xr-x 1 root root 1410 2017-12-04 05:46:48.000000000 -0800 byobu-quiet +-rwxr-xr-x 1 root root 3298 2017-12-04 05:46:48.000000000 -0800 byobu-reconnect-sockets +lrwxrwxrwx 1 root root 5 2017-12-04 05:46:48.000000000 -0800 byobu-screen -> byobu +-rwxr-xr-x 1 root root 1452 2017-12-04 05:46:48.000000000 -0800 byobu-select-backend +-rwxr-xr-x 1 root root 6287 2017-12-04 05:46:48.000000000 -0800 byobu-select-profile +-rwxr-xr-x 1 root root 1012 2017-12-04 05:46:48.000000000 -0800 byobu-select-session +-rwxr-xr-x 1 root root 1599 2017-12-04 05:46:48.000000000 -0800 byobu-shell +-rwxr-xr-x 1 root root 1306 2017-12-04 05:46:48.000000000 -0800 byobu-silent +-rwxr-xr-x 1 root root 6015 2017-12-04 05:46:48.000000000 -0800 byobu-status +-rwxr-xr-x 1 root root 1207 2017-12-04 05:46:48.000000000 -0800 byobu-status-detail +lrwxrwxrwx 1 root root 5 2017-12-04 05:46:48.000000000 -0800 byobu-tmux -> byobu +-rwxr-xr-x 1 root root 4667 2017-12-04 05:46:48.000000000 -0800 byobu-ugraph +-rwxr-xr-x 1 root root 11996 2017-12-04 05:46:48.000000000 -0800 byobu-ulevel +lrwxrwxrwx 1 root root 21 2019-10-17 17:14:23.966483723 -0700 c++ -> /etc/alternatives/c++ +lrwxrwxrwx 1 root root 21 2019-10-17 17:14:23.810468363 -0700 c89 -> /etc/alternatives/c89 +-rwxr-xr-x 1 root root 428 2006-05-07 02:28:01.000000000 -0700 c89-gcc +lrwxrwxrwx 1 root root 21 2019-10-17 17:14:23.830470333 -0700 c99 -> /etc/alternatives/c99 +-rwxr-xr-x 1 root root 454 2011-04-11 00:54:37.000000000 -0700 c99-gcc +lrwxrwxrwx 1 root root 4 2018-01-17 03:27:24.000000000 -0800 cal -> ncal +-rwxr-xr-x 1 root root 2844 2020-08-17 18:58:51.000000000 -0700 calc_tickadj +-rwxr-xr-x 1 root root 31208 2018-01-17 03:27:24.000000000 -0800 calendar +lrwxrwxrwx 1 root root 3 2018-05-23 01:08:27.000000000 -0700 captoinfo -> tic +-rwxr-xr-x 1 root root 3329 2020-06-04 10:25:26.000000000 -0700 catchsegv +-rwxr-xr-x 1 root root 39384 2018-08-04 12:16:12.000000000 -0700 catman +-rwxr-xr-x 1 root root 853 2016-07-15 05:06:12.000000000 -0700 cautious-launcher +lrwxrwxrwx 1 root root 20 2019-10-17 17:14:23.790466394 -0700 cc -> /etc/alternatives/cc +lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 c++filt -> x86_64-linux-gnu-c++filt +-rwxr-xr-x 1 root root 380 2020-03-16 10:24:46.000000000 -0700 cftp3 +-rwxr-xr-x 1 root root 1275 2016-01-25 09:58:07.000000000 -0800 cgroupfs-mount +-rwxr-xr-x 1 root root 620 2016-01-25 09:58:11.000000000 -0800 cgroupfs-umount +lrwxrwxrwx 1 root root 10 2019-08-05 12:24:25.000000000 -0700 chacl -> /bin/chacl +-rwxr-sr-x 1 root shadow 71816 2019-03-22 12:05:38.000000000 -0700 chage +lrwxrwxrwx 1 root root 11 2017-06-18 14:51:08.000000000 -0700 chardet3 -> chardetect3 +-rwxr-xr-x 1 root root 389 2017-06-18 14:51:08.000000000 -0700 chardetect3 +-rwxr-xr-x 1 root root 14336 2020-01-22 06:40:45.000000000 -0800 chattr +-rwxr-xr-x 1 root root 63672 2018-01-18 01:43:49.000000000 -0800 chcon +-rwxr-xr-x 1 root root 2771 2019-06-28 10:12:00.000000000 -0700 check-language-support +-rwsr-xr-x 1 root root 76496 2019-03-22 12:05:38.000000000 -0700 chfn +-rwxr-xr-x 1 root root 30800 2020-09-16 11:43:15.000000000 -0700 chrt +-rwsr-xr-x 1 root root 44528 2019-03-22 12:05:38.000000000 -0700 chsh +-rwxr-xr-x 1 root root 34960 2020-01-17 03:24:09.000000000 -0800 cifsiostat +-rwxr-xr-x 1 root root 144984 2020-03-23 05:26:28.000000000 -0700 ciptool +-rwxr-xr-x 1 root root 149838 2019-04-23 05:04:14.000000000 -0700 ckbcomp +-rwxr-xr-x 1 root root 386 2020-03-16 10:24:46.000000000 -0700 ckeygen3 +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 cksum +-rwxr-xr-x 1 root root 10240 2018-05-23 01:08:27.000000000 -0700 clear +-rwxr-xr-x 1 root root 10312 2019-06-06 15:28:15.000000000 -0700 clear_console +-rwxr-xr-x 1 root root 390 2020-06-02 19:08:10.000000000 -0700 cloud-id +-rwxr-xr-x 1 root root 394 2020-06-02 19:08:10.000000000 -0700 cloud-init +-rwxr-xr-x 1 root root 2108 2020-06-02 08:24:29.000000000 -0700 cloud-init-per +-rwxr-xr-x 1 root root 47200 2017-08-04 14:20:16.000000000 -0700 cmp +-rwxr-xr-x 1 root root 14328 2018-01-22 05:49:48.000000000 -0800 codepage +-rwxr-xr-x 1 root root 10232 2018-01-17 03:27:24.000000000 -0800 col +-rwxr-xr-x 1 root root 963 2017-12-04 05:46:48.000000000 -0800 col1 +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col2 -> col1 +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col3 -> col1 +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col4 -> col1 +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col5 -> col1 +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col6 -> col1 +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col7 -> col1 +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col8 -> col1 +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 col9 -> col1 +-rwxr-xr-x 1 root root 10240 2018-01-17 03:27:24.000000000 -0800 colcrt +-rwxr-xr-x 1 root root 10232 2018-01-17 03:27:24.000000000 -0800 colrm +-rwxr-xr-x 1 root root 14344 2018-01-17 03:27:24.000000000 -0800 column +-rwxr-xr-x 1 root root 39128 2018-01-18 01:43:49.000000000 -0800 comm +lrwxrwxrwx 1 root root 11 2016-07-15 05:06:12.000000000 -0700 compose -> run-mailcap +-rwxr-xr-x 1 root root 382 2020-03-16 10:24:46.000000000 -0700 conch3 +-rwxr-xr-x 1 root root 46160136 2020-03-19 19:13:11.000000000 -0700 containerd +-rwxr-xr-x 1 root root 6082248 2020-03-19 19:13:11.000000000 -0700 containerd-shim +-rwxr-xr-x 1 root root 7498568 2020-03-19 19:13:11.000000000 -0700 containerd-shim-runc-v1 +-rwxr-xr-x 1 root root 7502728 2020-03-19 19:13:11.000000000 -0700 containerd-shim-runc-v2 +-rwxr-xr-x 1 root root 21048904 2020-03-19 19:13:11.000000000 -0700 containerd-stress +-rwxr-xr-x 1 root root 12835 2020-10-19 03:57:24.000000000 -0700 corelist +-rwxr-xr-x 1 root root 8156 2020-10-19 03:57:24.000000000 -0700 cpan +-rwxr-xr-x 1 root root 8177 2020-10-19 03:57:24.000000000 -0700 cpan5.26-x86_64-linux-gnu +lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 cpp -> cpp-7 +lrwxrwxrwx 1 root root 22 2019-12-04 06:25:41.000000000 -0800 cpp-7 -> x86_64-linux-gnu-cpp-7 +-rwxr-xr-x 1 root root 6332 2021-03-22 04:42:42.000000000 -0700 c_rehash +-rwxr-sr-x 1 root crontab 39352 2017-11-15 21:29:19.000000000 -0800 crontab +-rwxr-xr-x 1 root root 51416 2018-01-18 01:43:49.000000000 -0800 csplit +-rwxr-xr-x 1 root root 958 2017-12-04 05:46:48.000000000 -0800 ctail +-rwxr-xr-x 1 root root 22699016 2020-03-19 19:13:11.000000000 -0700 ctr +lrwxrwxrwx 1 root root 6 2020-07-15 08:16:31.000000000 -0700 ctstat -> lnstat +-rwxr-xr-x 1 root root 223304 2020-12-01 10:01:10.000000000 -0800 curl +-rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 cut +-rwxr-xr-x 1 root root 10224 2020-06-11 11:25:30.000000000 -0700 dbus-cleanup-sockets +-rwxr-xr-x 1 root root 236584 2020-06-11 11:25:30.000000000 -0700 dbus-daemon +-rwxr-xr-x 1 root root 22520 2020-06-11 11:25:30.000000000 -0700 dbus-monitor +-rwxr-xr-x 1 root root 10224 2020-06-11 11:25:30.000000000 -0700 dbus-run-session +-rwxr-xr-x 1 root root 26608 2020-06-11 11:25:30.000000000 -0700 dbus-send +-rwxr-xr-x 1 root root 14320 2020-06-11 11:25:30.000000000 -0700 dbus-update-activation-environment +-rwxr-xr-x 1 root root 10224 2020-06-11 11:25:30.000000000 -0700 dbus-uuidgen +-rwxr-xr-x 1 root root 10312 2018-01-22 05:49:48.000000000 -0800 deallocvt +-rwxr-xr-x 1 root root 2859 2019-05-06 09:30:30.000000000 -0700 debconf +-rwxr-xr-x 1 root root 11541 2019-05-06 09:30:30.000000000 -0700 debconf-apt-progress +-rwxr-xr-x 1 root root 608 2019-05-06 09:30:30.000000000 -0700 debconf-communicate +-rwxr-xr-x 1 root root 1719 2019-05-06 09:30:30.000000000 -0700 debconf-copydb +-rwxr-xr-x 1 root root 647 2019-05-06 09:30:30.000000000 -0700 debconf-escape +-rwxr-xr-x 1 root root 2935 2019-05-06 09:30:30.000000000 -0700 debconf-set-selections +-rwxr-xr-x 1 root root 1827 2019-05-06 09:30:30.000000000 -0700 debconf-show +-rwxr-xr-x 1 root root 20142 2017-10-25 08:38:42.000000000 -0700 deb-systemd-helper +-rwxr-xr-x 1 root root 4434 2017-10-25 08:38:42.000000000 -0700 deb-systemd-invoke +-rwxr-xr-x 1 root root 22608 2020-09-16 11:43:15.000000000 -0700 delpart +-rwxr-xr-x 1 root root 41840 2021-02-15 05:08:25.000000000 -0800 delv +-rwxr-xr-x 1 root root 2550 2018-04-01 19:16:46.000000000 -0700 dh_bash-completion +lrwxrwxrwx 1 root root 26 2018-03-26 12:42:23.000000000 -0700 dh_pypy -> ../share/dh-python/dh_pypy +lrwxrwxrwx 1 root root 29 2018-03-26 12:42:23.000000000 -0700 dh_python3 -> ../share/dh-python/dh_python3 +-rwxr-xr-x 1 root root 145752 2017-08-04 14:20:16.000000000 -0700 diff +-rwxr-xr-x 1 root root 63704 2017-08-04 14:20:16.000000000 -0700 diff3 +-rwxr-xr-x 1 root root 150024 2021-02-15 05:08:25.000000000 -0800 dig +-rwxr-xr-x 1 root root 47296 2018-01-18 01:43:49.000000000 -0800 dircolors +-rwxr-xr-x 1 root root 546360 2020-09-17 06:57:57.000000000 -0700 dirmngr +-rwxr-xr-x 1 root root 109320 2020-09-17 06:57:57.000000000 -0700 dirmngr-client +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 dirname +-rwxr-xr-x 1 root root 89213816 2020-10-14 09:52:50.000000000 -0700 docker +-rwxr-xr-x 1 root root 105111664 2020-10-14 09:52:50.000000000 -0700 dockerd +-rwxr-xr-x 1 root root 804408 2020-10-14 09:52:50.000000000 -0700 docker-init +-rwxr-xr-x 1 root root 2901395 2020-10-14 09:52:50.000000000 -0700 docker-proxy +-rwxr-xr-x 1 root root 9313 2020-07-09 15:58:12.000000000 -0700 do-release-upgrade +-rwxr-xr-x 1 root root 297472 2019-09-05 14:05:14.000000000 -0700 dpkg +-rwxr-xr-x 1 root root 12852 2019-09-05 14:05:14.000000000 -0700 dpkg-architecture +-rwxr-xr-x 1 root root 7565 2019-09-05 14:05:14.000000000 -0700 dpkg-buildflags +-rwxr-xr-x 1 root root 29796 2019-09-05 14:05:14.000000000 -0700 dpkg-buildpackage +-rwxr-xr-x 1 root root 7503 2019-09-05 14:05:14.000000000 -0700 dpkg-checkbuilddeps +-rwxr-xr-x 1 root root 153952 2019-09-05 14:05:14.000000000 -0700 dpkg-deb +-rwxr-xr-x 1 root root 2782 2019-09-05 14:05:14.000000000 -0700 dpkg-distaddfile +-rwxr-xr-x 1 root root 141728 2019-09-05 14:05:14.000000000 -0700 dpkg-divert +-rwxr-xr-x 1 root root 16775 2019-09-05 14:05:14.000000000 -0700 dpkg-genbuildinfo +-rwxr-xr-x 1 root root 17622 2019-09-05 14:05:14.000000000 -0700 dpkg-genchanges +-rwxr-xr-x 1 root root 14059 2019-09-05 14:05:14.000000000 -0700 dpkg-gencontrol +-rwxr-xr-x 1 root root 10629 2019-09-05 14:05:14.000000000 -0700 dpkg-gensymbols +-rwxr-xr-x 1 root root 19031 2019-09-05 14:05:14.000000000 -0700 dpkg-maintscript-helper +-rwxr-xr-x 1 root root 8590 2019-09-05 14:05:14.000000000 -0700 dpkg-mergechangelogs +-rwxr-xr-x 1 root root 6789 2019-09-05 14:05:14.000000000 -0700 dpkg-name +-rwxr-xr-x 1 root root 4435 2019-09-05 14:05:14.000000000 -0700 dpkg-parsechangelog +-rwxr-xr-x 1 root root 149912 2019-09-05 14:05:14.000000000 -0700 dpkg-query +-rwxr-xr-x 1 root root 8425 2019-09-05 14:05:14.000000000 -0700 dpkg-scanpackages +-rwxr-xr-x 1 root root 9167 2019-09-05 14:05:14.000000000 -0700 dpkg-scansources +-rwxr-xr-x 1 root root 31360 2019-09-05 14:05:14.000000000 -0700 dpkg-shlibdeps +-rwxr-xr-x 1 root root 23300 2019-09-05 14:05:14.000000000 -0700 dpkg-source +-rwxr-xr-x 1 root root 121176 2019-09-05 14:05:14.000000000 -0700 dpkg-split +-rwxr-xr-x 1 root root 71936 2019-09-05 14:05:14.000000000 -0700 dpkg-statoverride +-rwxr-xr-x 1 root root 67848 2019-09-05 14:05:14.000000000 -0700 dpkg-trigger +-rwxr-xr-x 1 root root 3262 2019-09-05 14:05:14.000000000 -0700 dpkg-vendor +-rwxr-xr-x 1 root root 100568 2018-01-18 01:43:49.000000000 -0800 du +lrwxrwxrwx 1 root root 13 2019-08-05 12:23:31.000000000 -0700 dumpkeys -> /bin/dumpkeys +lrwxrwxrwx 1 root root 20 2021-02-12 00:45:35.000000000 -0800 dwp -> x86_64-linux-gnu-dwp +-rwxr-xr-x 1 root root 2806 2018-03-09 10:37:20.000000000 -0800 eatmydata +-rwxr-xr-x 1 root root 7297 2018-04-13 06:07:55.000000000 -0700 ec2metadata +lrwxrwxrwx 1 root root 11 2016-07-15 05:06:12.000000000 -0700 edit -> run-mailcap +lrwxrwxrwx 1 root root 24 2019-08-05 12:23:26.000000000 -0700 editor -> /etc/alternatives/editor +-rwxr-xr-x 1 root root 31424 2017-03-27 21:22:15.000000000 -0700 eject +lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 elfedit -> x86_64-linux-gnu-elfedit +-rwxr-xr-x 1 root root 42153 2020-10-19 03:57:24.000000000 -0700 enc2xs +-rwxr-xr-x 1 root root 3066 2020-10-19 03:57:24.000000000 -0700 encguess +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 env +-rwxr-xr-x 1 root root 34896 2019-02-21 06:40:49.000000000 -0800 envsubst +-rwxr-xr-x 1 root root 197824 2018-02-09 18:09:07.000000000 -0800 eqn +lrwxrwxrwx 1 root root 20 2019-08-05 12:23:26.000000000 -0700 ex -> /etc/alternatives/ex +-rwxr-xr-x 1 root root 39128 2018-01-18 01:43:49.000000000 -0800 expand +-rwxr-sr-x 1 root shadow 22808 2019-03-22 12:05:38.000000000 -0700 expiry +-rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 expr +-rwxr-xr-x 1 root root 75992 2018-01-18 01:43:49.000000000 -0800 factor +-rwxr-xr-x 1 root root 18728 2019-03-22 12:05:38.000000000 -0700 faillog +-rwxr-xr-x 1 root root 26736 2018-01-08 08:05:31.000000000 -0800 faked-sysv +-rwxr-xr-x 1 root root 30824 2018-01-08 08:05:31.000000000 -0800 faked-tcp +lrwxrwxrwx 1 root root 26 2019-10-17 17:14:22.698358852 -0700 fakeroot -> /etc/alternatives/fakeroot +-rwxr-xr-x 1 root root 3851 2018-01-08 08:05:31.000000000 -0800 fakeroot-sysv +-rwxr-xr-x 1 root root 3846 2018-01-08 08:05:31.000000000 -0800 fakeroot-tcp +-rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 fallocate +-rwxr-xr-x 1 root root 22792 2020-05-12 06:31:09.000000000 -0700 file +-rwxr-xr-x 1 root root 238080 2017-11-05 09:16:48.000000000 -0800 find +-rwxr-xr-x 1 root root 30880 2020-09-16 11:43:15.000000000 -0700 flock +-rwxr-xr-x 1 root root 43192 2018-01-18 01:43:49.000000000 -0800 fmt +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 fold +-rwxr-xr-x 1 root root 18512 2019-08-09 08:37:27.000000000 -0700 free +lrwxrwxrwx 1 root root 22 2019-08-05 12:24:25.000000000 -0700 from -> /etc/alternatives/from +lrwxrwxrwx 1 root root 21 2019-08-05 12:24:23.000000000 -0700 ftp -> /etc/alternatives/ftp +lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 g++ -> g++-7 +lrwxrwxrwx 1 root root 22 2019-12-04 06:25:41.000000000 -0800 g++-7 -> x86_64-linux-gnu-g++-7 +-rwxr-xr-x 1 root root 277248 2020-03-23 05:26:28.000000000 -0700 gatttool +-rwxr-xr-x 1 root root 658072 2018-02-10 21:02:41.000000000 -0800 gawk +lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 gcc -> gcc-7 +lrwxrwxrwx 1 root root 22 2019-12-04 06:25:41.000000000 -0800 gcc-7 -> x86_64-linux-gnu-gcc-7 +lrwxrwxrwx 1 root root 8 2019-05-20 09:08:41.000000000 -0700 gcc-ar -> gcc-ar-7 +lrwxrwxrwx 1 root root 25 2019-12-04 06:25:41.000000000 -0800 gcc-ar-7 -> x86_64-linux-gnu-gcc-ar-7 +lrwxrwxrwx 1 root root 8 2019-05-20 09:08:41.000000000 -0700 gcc-nm -> gcc-nm-7 +lrwxrwxrwx 1 root root 25 2019-12-04 06:25:41.000000000 -0800 gcc-nm-7 -> x86_64-linux-gnu-gcc-nm-7 +lrwxrwxrwx 1 root root 12 2019-05-20 09:08:41.000000000 -0700 gcc-ranlib -> gcc-ranlib-7 +lrwxrwxrwx 1 root root 29 2019-12-04 06:25:41.000000000 -0800 gcc-ranlib-7 -> x86_64-linux-gnu-gcc-ranlib-7 +lrwxrwxrwx 1 root root 6 2019-05-20 09:08:41.000000000 -0700 gcov -> gcov-7 +lrwxrwxrwx 1 root root 23 2019-12-04 06:25:41.000000000 -0800 gcov-7 -> x86_64-linux-gnu-gcov-7 +lrwxrwxrwx 1 root root 11 2019-05-20 09:08:41.000000000 -0700 gcov-dump -> gcov-dump-7 +lrwxrwxrwx 1 root root 28 2019-12-04 06:25:41.000000000 -0800 gcov-dump-7 -> x86_64-linux-gnu-gcov-dump-7 +lrwxrwxrwx 1 root root 11 2019-05-20 09:08:41.000000000 -0700 gcov-tool -> gcov-tool-7 +lrwxrwxrwx 1 root root 28 2019-12-04 06:25:41.000000000 -0800 gcov-tool-7 -> x86_64-linux-gnu-gcov-tool-7 +-rwxr-xr-x 1 root root 22752 2020-06-04 10:25:26.000000000 -0700 gencat +lrwxrwxrwx 1 root root 3 2018-02-09 18:09:07.000000000 -0800 geqn -> eqn +-rwxr-xr-x 1 root root 30856 2020-06-04 10:25:26.000000000 -0700 getconf +-rwxr-xr-x 1 root root 31224 2020-06-04 10:25:26.000000000 -0700 getent +lrwxrwxrwx 1 root root 12 2019-08-05 12:24:25.000000000 -0700 getfacl -> /bin/getfacl +-rwxr-xr-x 1 root root 10312 2018-01-22 05:49:48.000000000 -0800 getkeycodes +-rwxr-xr-x 1 root root 14408 2020-09-16 11:43:15.000000000 -0700 getopt +-rwxr-xr-x 1 root root 34896 2019-02-21 06:40:49.000000000 -0800 gettext +-rwxr-xr-x 1 root root 4629 2019-02-21 06:40:49.000000000 -0800 gettext.sh +lrwxrwxrwx 1 root root 12 2018-02-05 06:48:18.000000000 -0800 ginstall-info -> install-info +-rwxr-xr-x 1 root root 2351792 2021-03-04 05:02:54.000000000 -0800 git +lrwxrwxrwx 1 root root 3 2021-03-04 05:02:54.000000000 -0800 git-receive-pack -> git +-rwxr-xr-x 1 root root 1309008 2021-03-04 05:02:54.000000000 -0800 git-shell +lrwxrwxrwx 1 root root 3 2021-03-04 05:02:54.000000000 -0800 git-upload-archive -> git +-rwxr-xr-x 1 root root 1317120 2021-03-04 05:02:54.000000000 -0800 git-upload-pack +lrwxrwxrwx 1 root root 21 2021-02-12 00:45:35.000000000 -0800 gold -> x86_64-linux-gnu-gold +-rwsr-xr-x 1 root root 75824 2019-03-22 12:05:38.000000000 -0700 gpasswd +-rwxr-xr-x 1 root root 1021512 2020-09-17 06:57:57.000000000 -0700 gpg +-rwxr-xr-x 1 root root 402120 2020-09-17 06:57:57.000000000 -0700 gpg-agent +-rwxr-xr-x 1 root root 170312 2020-09-17 06:57:57.000000000 -0700 gpgconf +-rwxr-xr-x 1 root root 158568 2020-09-17 06:57:57.000000000 -0700 gpg-connect-agent +-rwxr-xr-x 1 root root 26696 2020-09-17 06:57:57.000000000 -0700 gpgparsemail +-rwxr-xr-x 1 root root 502880 2020-09-17 06:57:57.000000000 -0700 gpgsm +-rwxr-xr-x 1 root root 80336 2020-09-17 06:57:57.000000000 -0700 gpgsplit +-rwxr-xr-x 1 root root 437264 2020-09-17 06:57:57.000000000 -0700 gpgv +-rwxr-xr-x 1 root root 191504 2020-09-17 06:57:57.000000000 -0700 gpg-wks-server +-rwxr-xr-x 1 root root 3443 2020-09-17 06:57:57.000000000 -0700 gpg-zip +lrwxrwxrwx 1 root root 3 2018-02-09 18:09:07.000000000 -0800 gpic -> pic +lrwxrwxrwx 1 root root 22 2021-02-12 00:45:35.000000000 -0800 gprof -> x86_64-linux-gnu-gprof +-rwxr-xr-x 1 root root 107840 2018-02-09 18:09:07.000000000 -0800 groff +-rwxr-xr-x 1 root root 2780 2018-02-09 18:09:07.000000000 -0800 grog +-rwxr-xr-x 1 root root 169696 2018-02-09 18:09:07.000000000 -0800 grops +-rwxr-xr-x 1 root root 124256 2018-02-09 18:09:07.000000000 -0800 grotty +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 groups +-rwxr-xr-x 1 root root 21883 2018-04-13 06:07:55.000000000 -0700 growpart +-rwxr-xr-x 1 root root 245688 2020-07-30 18:49:49.000000000 -0700 grub-editenv +-rwxr-xr-x 1 root root 675624 2020-07-30 18:49:49.000000000 -0700 grub-file +-rwxr-xr-x 1 root root 808600 2020-07-30 18:49:49.000000000 -0700 grub-fstest +-rwxr-xr-x 1 root root 241432 2020-07-30 18:49:49.000000000 -0700 grub-glue-efi +-rwxr-xr-x 1 root root 1681 2020-07-30 18:49:49.000000000 -0700 grub-kbdcomp +-rwxr-xr-x 1 root root 221224 2020-07-30 18:49:49.000000000 -0700 grub-menulst2cfg +-rwxr-xr-x 1 root root 270680 2020-07-30 18:49:49.000000000 -0700 grub-mkfont +-rwxr-xr-x 1 root root 336728 2020-07-30 18:49:49.000000000 -0700 grub-mkimage +-rwxr-xr-x 1 root root 245848 2020-07-30 18:49:49.000000000 -0700 grub-mklayout +-rwxr-xr-x 1 root root 378280 2020-07-30 18:49:49.000000000 -0700 grub-mknetdir +-rwxr-xr-x 1 root root 249976 2020-07-30 18:49:49.000000000 -0700 grub-mkpasswd-pbkdf2 +-rwxr-xr-x 1 root root 241144 2020-07-30 18:49:49.000000000 -0700 grub-mkrelpath +-rwxr-xr-x 1 root root 841960 2020-07-30 18:49:49.000000000 -0700 grub-mkrescue +-rwxr-xr-x 1 root root 460536 2020-07-30 18:49:49.000000000 -0700 grub-mkstandalone +-rwxr-xr-x 1 root root 622808 2020-07-30 18:49:49.000000000 -0700 grub-mount +lrwxrwxrwx 1 root root 34 2020-07-30 18:49:49.000000000 -0700 grub-ntldr-img -> ../lib/grub/i386-pc/grub-ntldr-img +-rwxr-xr-x 1 root root 692392 2020-07-30 18:49:49.000000000 -0700 grub-render-label +-rwxr-xr-x 1 root root 265848 2020-07-30 18:49:49.000000000 -0700 grub-script-check +-rwxr-xr-x 1 root root 639672 2020-07-30 18:49:49.000000000 -0700 grub-syslinux2cfg +lrwxrwxrwx 1 root root 3 2018-02-09 18:09:07.000000000 -0800 gtbl -> tbl +-rwxr-xr-x 1 root root 29224 2020-10-19 03:57:24.000000000 -0700 h2ph +-rwxr-xr-x 1 root root 60866 2020-10-19 03:57:24.000000000 -0700 h2xs +-rwxr-xr-x 1 root root 137144 2020-03-23 05:26:28.000000000 -0700 hciattach +-rwxr-xr-x 1 root root 147000 2020-03-23 05:26:28.000000000 -0700 hcitool +lrwxrwxrwx 1 root root 7 2018-01-17 03:27:24.000000000 -0800 hd -> hexdump +-rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 head +-rwxr-xr-x 1 root root 2514 2018-02-02 12:37:32.000000000 -0800 helpztags +-rwxr-xr-x 1 root root 14408 2020-03-23 05:26:28.000000000 -0700 hex2hcd +-rwxr-xr-x 1 root root 26728 2018-01-17 03:27:24.000000000 -0800 hexdump +-rwxr-xr-x 1 root root 129704 2021-02-15 05:08:25.000000000 -0800 host +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 hostid +-rwxr-xr-x 1 root root 18504 2020-07-08 11:59:14.000000000 -0700 hostnamectl +-rwxr-xr-x 1 root root 185016 2018-02-17 10:27:46.000000000 -0800 htop +-rwxr-xr-x 1 root root 10830 2020-06-03 11:41:50.000000000 -0700 hwe-support-status +lrwxrwxrwx 1 root root 7 2020-09-16 11:43:15.000000000 -0700 i386 -> setarch +-rwxr-xr-x 1 root root 63744 2020-06-04 10:25:26.000000000 -0700 iconv +-rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 id +-rwxr-xr-x 1 root root 3189 2018-02-10 21:02:41.000000000 -0800 igawk +-rwxr-xr-x 1 root root 251616 2018-02-05 06:48:18.000000000 -0800 info +lrwxrwxrwx 1 root root 29 2019-08-05 12:24:14.000000000 -0700 infobrowser -> /etc/alternatives/infobrowser +-rwxr-xr-x 1 root root 59464 2018-05-23 01:08:27.000000000 -0700 infocmp +lrwxrwxrwx 1 root root 3 2018-05-23 01:08:27.000000000 -0700 infotocap -> tic +-rwxr-xr-x 1 root root 145664 2018-01-18 01:43:49.000000000 -0800 install +-rwxr-xr-x 1 root root 44128 2018-02-05 06:48:18.000000000 -0800 install-info +-rwxr-xr-x 1 root root 4370 2020-10-19 03:57:24.000000000 -0700 instmodsh +-rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 ionice +-rwxr-xr-x 1 root root 55440 2020-01-17 03:24:09.000000000 -0800 iostat +-rwxr-xr-x 1 root root 26768 2020-09-16 11:43:15.000000000 -0700 ipcmk +-rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 ipcrm +-rwxr-xr-x 1 root root 51280 2020-09-16 11:43:15.000000000 -0700 ipcs +lrwxrwxrwx 1 root root 19 2017-11-11 18:52:05.000000000 -0800 iptables-xml -> /sbin/xtables-multi +-rwxr-xr-x 1 root root 10280 2017-12-30 10:15:02.000000000 -0800 ischroot +lrwxrwxrwx 1 root root 14 2020-05-10 18:27:31.000000000 -0700 iscsiadm -> /sbin/iscsiadm +-rwxr-xr-x 1 root root 47320 2018-01-18 01:43:49.000000000 -0800 join +-rwxr-xr-x 1 root root 22520 2017-01-29 20:41:39.000000000 -0800 jq +lrwxrwxrwx 1 root root 26 2019-08-05 12:24:22.000000000 -0700 jsondiff -> /etc/alternatives/jsondiff +lrwxrwxrwx 1 root root 27 2019-08-05 12:24:22.000000000 -0700 jsonpatch -> /etc/alternatives/jsonpatch +lrwxrwxrwx 1 root root 29 2019-08-05 12:24:16.000000000 -0700 jsonpointer -> /etc/alternatives/jsonpointer +-rwxr-xr-x 1 root root 3959 2020-10-19 03:57:24.000000000 -0700 json_pp +lrwxrwxrwx 1 root root 28 2019-08-05 12:24:20.000000000 -0700 jsonschema -> /etc/alternatives/jsonschema +-rwxr-xr-x 1 root root 14408 2018-01-22 05:49:48.000000000 -0800 kbdinfo +-rwxr-xr-x 1 root root 162496 2020-09-17 06:57:57.000000000 -0700 kbxutil +lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 keep-one-running -> run-one +-rwxr-xr-x 1 root root 4508 2018-01-28 07:58:17.000000000 -0800 kernel-install +-rwxr-xr-x 1 root root 385 2018-01-09 04:15:19.000000000 -0800 keyring +-rwxr-xr-x 1 root root 27768 2018-12-11 07:46:04.000000000 -0800 killall +-rwxr-xr-x 1 root root 98152 2020-03-23 05:26:28.000000000 -0700 l2ping +-rwxr-xr-x 1 root root 114792 2020-03-23 05:26:28.000000000 -0700 l2test +-rwxr-xr-x 1 root root 624 2020-02-20 09:35:22.000000000 -0800 landscape-sysinfo +-rwxr-xr-x 1 root root 43088 2020-09-16 11:43:15.000000000 -0700 last +lrwxrwxrwx 1 root root 4 2020-09-16 11:43:15.000000000 -0700 lastb -> last +-rwxr-xr-x 1 root root 18504 2019-03-22 12:05:38.000000000 -0700 lastlog +-rwxr-xr-x 1 root root 7786 2018-02-25 16:58:23.000000000 -0800 lcf +lrwxrwxrwx 1 root root 19 2021-02-12 00:45:35.000000000 -0800 ld -> x86_64-linux-gnu-ld +lrwxrwxrwx 1 root root 23 2021-02-12 00:45:35.000000000 -0800 ld.bfd -> x86_64-linux-gnu-ld.bfd +-rwxr-xr-x 1 root root 5422 2020-06-04 10:25:26.000000000 -0700 ldd +lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 ld.gold -> x86_64-linux-gnu-ld.gold +-rwxr-xr-x 1 root root 433 2017-01-21 11:21:39.000000000 -0800 ld-musl-config +lrwxrwxrwx 1 root root 9 2019-08-05 12:23:23.000000000 -0700 less -> /bin/less +lrwxrwxrwx 1 root root 13 2019-08-05 12:23:23.000000000 -0700 lessecho -> /bin/lessecho +lrwxrwxrwx 1 root root 13 2019-08-05 12:23:23.000000000 -0700 lessfile -> /bin/lessfile +lrwxrwxrwx 1 root root 12 2019-08-05 12:23:23.000000000 -0700 lesskey -> /bin/lesskey +lrwxrwxrwx 1 root root 13 2019-08-05 12:23:23.000000000 -0700 lesspipe -> /bin/lesspipe +-rwxr-xr-x 1 root root 92744 2018-08-04 12:16:12.000000000 -0700 lexgrog +lrwxrwxrwx 1 root root 21 2020-07-27 14:56:20.488037770 -0700 lft -> /etc/alternatives/lft +-rwxr-xr-x 1 root root 2493 2016-08-29 08:45:51.000000000 -0700 lft.db +-rwxr-xr-x 1 root root 15775 2020-10-19 03:57:24.000000000 -0700 libnetcfg +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 link +lrwxrwxrwx 1 root root 7 2020-09-16 11:43:15.000000000 -0700 linux32 -> setarch +lrwxrwxrwx 1 root root 7 2020-09-16 11:43:15.000000000 -0700 linux64 -> setarch +-rwxr-xr-x 1 root root 1577 2017-01-21 07:43:27.000000000 -0800 linux-boot-prober +-rwxr-xr-x 1 root root 4090 2016-06-20 19:48:57.000000000 -0700 linux-check-removal +-rwxr-xr-x 1 root root 6320 2016-06-04 18:13:24.000000000 -0700 linux-update-symlinks +-rwxr-xr-x 1 root root 2696 2016-09-16 23:12:36.000000000 -0700 linux-version +-rwxr-xr-x 1 root root 22888 2020-07-15 08:16:31.000000000 -0700 lnstat +lrwxrwxrwx 1 root root 13 2019-08-05 12:23:31.000000000 -0700 loadkeys -> /bin/loadkeys +-rwxr-xr-x 1 root root 26760 2018-01-22 05:49:48.000000000 -0800 loadunimap +-rwxr-xr-x 1 root root 50592 2020-06-04 10:25:26.000000000 -0700 locale +-rwxr-xr-x 1 root root 10240 2020-08-05 01:14:19.000000000 -0700 locale-check +-rwxr-xr-x 1 root root 22600 2020-07-08 11:59:14.000000000 -0700 localectl +-rwxr-xr-x 1 root root 338744 2020-06-04 10:25:26.000000000 -0700 localedef +lrwxrwxrwx 1 root root 24 2019-08-05 12:24:17.000000000 -0700 locate -> /etc/alternatives/locate +-rwxr-xr-x 1 root root 47792 2020-09-16 11:43:15.000000000 -0700 logger +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 logname +-rwxr-xr-x 1 root root 10472 2018-01-17 03:27:24.000000000 -0800 look +-rwxr-xr-x 1 root root 2885 2018-01-17 03:27:24.000000000 -0800 lorder +-rwxr-xr-x 1 root root 10240 2020-01-22 06:40:45.000000000 -0800 lsattr +-rwxr-xr-x 1 root root 3638 2017-08-07 14:55:07.000000000 -0700 lsb_release +-rwxr-xr-x 1 root root 71760 2020-09-16 11:43:15.000000000 -0700 lscpu +-rwxr-xr-x 1 root root 687056 2018-07-10 07:25:42.000000000 -0700 lshw +-rwxr-xr-x 1 root root 625 2019-10-07 03:53:35.000000000 -0700 lsinitramfs +-rwxr-xr-x 1 root root 71760 2020-09-16 11:43:15.000000000 -0700 lsipc +-rwxr-xr-x 1 root root 35232 2020-09-16 11:43:15.000000000 -0700 lslocks +-rwxr-xr-x 1 root root 63568 2020-09-16 11:43:15.000000000 -0700 lslogins +-rwxr-xr-x 1 root root 43088 2020-09-16 11:43:15.000000000 -0700 lsmem +-rwxr-xr-x 1 root root 38992 2020-09-16 11:43:15.000000000 -0700 lsns +-rwxr-xr-x 1 root root 163224 2015-10-28 09:57:56.000000000 -0700 lsof +-rwxr-xr-x 1 root root 81584 2019-02-10 10:25:12.000000000 -0800 lspci +-rwxr-xr-x 1 root root 1081 2017-08-28 03:22:54.000000000 -0700 lspgpot +-rwxr-xr-x 1 root root 117176 2017-04-21 13:59:17.000000000 -0700 lsusb +-rwxr-xr-x 1 root root 333016 2016-10-12 23:20:41.000000000 -0700 ltrace +-rwxr-xr-x 1 root root 10779792 2018-11-23 10:58:51.000000000 -0800 lxc +-rwxr-xr-x 1 root root 18504 2020-03-31 09:20:51.000000000 -0700 lxcfs +-rwxr-xr-x 1 root root 105 2018-11-23 10:58:51.000000000 -0800 lxd +lrwxrwxrwx 1 root root 23 2019-08-05 12:23:24.000000000 -0700 lzcat -> /etc/alternatives/lzcat +lrwxrwxrwx 1 root root 23 2019-08-05 12:23:24.000000000 -0700 lzcmp -> /etc/alternatives/lzcmp +lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 lzdiff -> /etc/alternatives/lzdiff +lrwxrwxrwx 1 root root 25 2019-08-05 12:23:24.000000000 -0700 lzegrep -> /etc/alternatives/lzegrep +lrwxrwxrwx 1 root root 25 2019-08-05 12:23:24.000000000 -0700 lzfgrep -> /etc/alternatives/lzfgrep +lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 lzgrep -> /etc/alternatives/lzgrep +lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 lzless -> /etc/alternatives/lzless +lrwxrwxrwx 1 root root 22 2019-08-05 12:23:24.000000000 -0700 lzma -> /etc/alternatives/lzma +-rwxr-xr-x 1 root root 10384 2017-06-28 09:39:19.000000000 -0700 lzmainfo +lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 lzmore -> /etc/alternatives/lzmore +-rwxr-xr-x 1 root root 222792 2018-04-17 05:12:28.000000000 -0700 make +-rwxr-xr-x 1 root root 4905 2018-04-17 05:12:28.000000000 -0700 make-first-existing-target +-rwxr-xr-x 1 root root 107008 2018-08-04 12:16:12.000000000 -0700 man +-rwxr-xr-x 1 root root 129760 2018-08-04 12:16:12.000000000 -0700 mandb +-rwxr-xr-x 1 root root 1942 2017-12-04 05:46:48.000000000 -0800 manifest +-rwxr-xr-x 1 root root 31200 2018-08-04 12:16:12.000000000 -0700 manpath +-rwxr-xr-x 1 root root 22664 2018-01-22 05:49:48.000000000 -0800 mapscrn +-rwxr-xr-x 1 root root 125416 2018-04-03 05:34:18.000000000 -0700 mawk +-rwxr-xr-x 1 root root 30864 2020-09-16 11:43:15.000000000 -0700 mcookie +-rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 md5sum +lrwxrwxrwx 1 root root 6 2018-01-18 01:43:49.000000000 -0800 md5sum.textutils -> md5sum +-rwxr-xr-x 1 root root 43136 2021-02-15 05:08:25.000000000 -0800 mdig +-rwxr-xr-x 1 root root 10312 2020-09-16 11:43:15.000000000 -0700 mesg +-rwxr-xr-x 1 root root 2194 2017-11-30 15:42:42.000000000 -0800 migrate-pubring-from-classic-gpg +-rwxr-xr-x 1 root root 35098 2018-04-09 04:57:25.000000000 -0700 miniterm +-rwxr-xr-x 1 root root 63672 2018-01-18 01:43:49.000000000 -0800 mkfifo +-rwxr-xr-x 1 root root 16163 2018-01-22 05:49:48.000000000 -0800 mk_modmap +-rwxr-xr-x 1 root root 189432 2018-07-05 12:49:18.000000000 -0700 mksquashfs +-rwxr-sr-x 1 root mlocate 43088 2018-03-01 08:07:16.000000000 -0800 mlocate +-rwxr-xr-x 1 root root 51360 2020-01-17 03:24:09.000000000 -0800 mpstat +-rwxr-xr-x 1 root root 73664 2017-11-01 19:48:40.000000000 -0700 mtr +-rwxr-xr-x 1 root root 6496 2020-06-04 10:25:26.000000000 -0700 mtrace +-rwxr-xr-x 1 root root 26616 2017-11-01 19:48:40.000000000 -0700 mtr-packet +-rwxr-xr-x 1 root root 173 2018-02-25 09:54:30.000000000 -0800 musl-gcc +lrwxrwxrwx 1 root root 30 2018-02-25 09:54:30.000000000 -0800 musl-ldd -> /lib/x86_64-linux-musl/libc.so +-rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 namei +lrwxrwxrwx 1 root root 22 2019-08-05 12:22:59.000000000 -0700 nawk -> /etc/alternatives/nawk +-rwxr-xr-x 1 root root 29480 2018-01-17 03:27:24.000000000 -0800 ncal +-rwxr-xr-x 1 root root 204760 2018-04-15 18:11:39.000000000 -0700 ncat +-rwxr-xr-x 1 root root 908 2018-02-09 18:09:07.000000000 -0800 neqn +-rwxr-xr-x 1 root root 101064 2016-12-06 07:23:57.000000000 -0800 netkit-ftp +-rwxr-xr-x 1 root root 18203 2018-10-15 05:12:24.000000000 -0700 networkd-dispatcher +-rwsr-xr-x 1 root root 37136 2019-03-22 12:05:38.000000000 -0700 newgidmap +-rwsr-xr-x 1 root root 40344 2019-03-22 12:05:38.000000000 -0700 newgrp +-rwsr-xr-x 1 root root 37136 2019-03-22 12:05:38.000000000 -0700 newuidmap +lrwxrwxrwx 1 root root 4 2017-12-04 05:46:48.000000000 -0800 NF -> col1 +-rwxr-xr-x 1 root root 34896 2019-02-21 06:40:49.000000000 -0800 ngettext +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 nice +-rwxr-xr-x 1 root root 43288 2018-01-18 01:43:49.000000000 -0800 nl +lrwxrwxrwx 1 root root 19 2021-02-12 00:45:35.000000000 -0800 nm -> x86_64-linux-gnu-nm +-rwxr-xr-x 1 root root 2961432 2018-04-15 18:11:39.000000000 -0700 nmap +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 nohup +-rwxr-xr-x 1 root root 530776 2018-04-15 18:11:39.000000000 -0700 nping +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 nproc +-rwxr-xr-x 1 root root 3323 2018-02-09 18:09:07.000000000 -0800 nroff +-rwxr-xr-x 1 root root 31008 2020-09-16 11:43:15.000000000 -0700 nsenter +-rwxr-xr-x 1 root root 133640 2021-02-15 05:08:25.000000000 -0800 nslookup +-rwxr-xr-x 1 root root 26696 2020-07-15 08:16:31.000000000 -0700 nstat +-rwxr-xr-x 1 root root 67608 2021-02-15 05:08:25.000000000 -0800 nsupdate +-rwxr-xr-x 1 root root 47224 2019-03-21 14:33:01.000000000 -0700 ntfsdecrypt +-rwxr-xr-x 1 root root 145544 2020-08-17 18:58:51.000000000 -0700 ntpdc +-rwxr-xr-x 1 root root 188584 2020-08-17 18:58:51.000000000 -0700 ntpq +-rwxr-xr-x 1 root root 7980 2020-08-17 18:58:51.000000000 -0700 ntpsweep +-rwxr-xr-x 1 root root 3560 2020-08-17 18:58:51.000000000 -0700 ntptrace +-rwxr-xr-x 1 root root 63736 2018-01-18 01:43:49.000000000 -0800 numfmt +-rwxr-xr-x 1 root root 149640 2020-03-23 05:26:28.000000000 -0700 obexctl +lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 objcopy -> x86_64-linux-gnu-objcopy +lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 objdump -> x86_64-linux-gnu-objdump +-rwxr-xr-x 1 root root 67800 2018-01-18 01:43:49.000000000 -0800 od +lrwxrwxrwx 1 root root 17 2018-03-20 06:19:42.000000000 -0700 on_ac_power -> /sbin/on_ac_power +-rwxr-xr-x 1 root root 723944 2021-03-22 04:42:42.000000000 -0700 openssl +-rwxr-xr-x 1 root root 4551 2017-01-31 12:30:39.000000000 -0800 os-prober +lrwxrwxrwx 1 root root 23 2019-08-05 12:23:04.000000000 -0700 pager -> /etc/alternatives/pager +-rwxr-xr-x 1 root root 88144 2020-09-16 11:43:15.000000000 -0700 partx +-rwsr-xr-x 1 root root 59640 2019-03-22 12:05:38.000000000 -0700 passwd +-rwxr-xr-x 1 root root 35032 2018-01-18 01:43:49.000000000 -0800 paste +-rwxr-xr-x 1 root root 16642 2016-02-29 21:52:32.000000000 -0800 pastebinit +-rwxr-xr-x 1 root root 182648 2019-07-23 05:12:54.000000000 -0700 patch +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 pathchk +lrwxrwxrwx 1 root root 5 2018-04-15 08:38:02.000000000 -0700 pbget -> pbput +-rwxr-xr-x 1 root root 2569 2016-02-29 08:14:33.000000000 -0800 pbput +lrwxrwxrwx 1 root root 5 2018-04-15 08:38:02.000000000 -0700 pbputs -> pbput +-rwxr-xr-x 1 root root 14472 2019-02-10 10:25:12.000000000 -0800 pcimodules +lrwxrwxrwx 1 root root 6 2018-10-25 04:11:00.000000000 -0700 pdb3 -> pdb3.6 +lrwxrwxrwx 1 root root 23 2021-01-26 07:33:00.000000000 -0800 pdb3.6 -> ../lib/python3.6/pdb.py +-rwxr-xr-x 1 root root 14328 2018-12-11 07:46:04.000000000 -0800 peekfd +-rwxr-xr-x 2 root root 2097720 2020-10-19 03:57:24.000000000 -0700 perl +-rwxr-xr-x 2 root root 2097720 2020-10-19 03:57:24.000000000 -0700 perl5.26.1 +-rwxr-xr-x 1 root root 10216 2020-10-19 03:57:24.000000000 -0700 perl5.26-x86_64-linux-gnu +-rwxr-xr-x 2 root root 45853 2020-10-19 03:57:24.000000000 -0700 perlbug +-rwxr-xr-x 1 root root 125 2020-10-19 03:57:24.000000000 -0700 perldoc +-rwxr-xr-x 1 root root 10864 2020-10-19 03:57:24.000000000 -0700 perlivp +-rwxr-xr-x 2 root root 45853 2020-10-19 03:57:24.000000000 -0700 perlthanks +lrwxrwxrwx 1 root root 22 2019-08-05 12:24:23.000000000 -0700 pftp -> /etc/alternatives/pftp +-rwxr-xr-x 1 root root 26712 2019-08-09 08:37:27.000000000 -0700 pgrep +-rwxr-xr-x 1 root root 208928 2018-02-09 18:09:07.000000000 -0800 pic +lrwxrwxrwx 1 root root 22 2019-08-05 12:24:20.000000000 -0700 pico -> /etc/alternatives/pico +-rwxr-xr-x 1 root root 8357 2020-10-19 03:57:24.000000000 -0700 piconv +-rwxr-xr-x 1 root root 63648 2020-01-17 03:24:09.000000000 -0800 pidstat +-rwxr-xr-x 2 root root 116944 2017-12-27 11:41:06.000000000 -0800 pigz +lrwxrwxrwx 1 root root 26 2019-08-05 12:24:35.000000000 -0700 pinentry -> /etc/alternatives/pinentry +-rwxr-xr-x 1 root root 63992 2018-02-05 17:18:30.000000000 -0800 pinentry-curses +-rwxr-xr-x 1 root root 39128 2018-01-18 01:43:49.000000000 -0800 pinky +-rwxr-xr-x 1 root root 293 2020-10-22 07:40:50.000000000 -0700 pip3 +-rwxr-xr-x 1 root root 14328 2019-03-27 06:57:02.000000000 -0700 pkaction +-rwxr-xr-x 1 root root 18504 2019-03-27 06:57:02.000000000 -0700 pkcheck +-rwsr-xr-x 1 root root 22520 2019-03-27 06:57:02.000000000 -0700 pkexec +-rwxr-xr-x 2 root root 51296 2017-04-21 13:54:08.000000000 -0700 pkg-config +lrwxrwxrwx 1 root root 5 2019-08-09 08:37:27.000000000 -0700 pkill -> pgrep +-rwxr-xr-x 1 root root 14328 2019-03-27 06:57:02.000000000 -0700 pkttyagent +-rwxr-xr-x 1 root root 4533 2020-10-19 03:57:24.000000000 -0700 pl2pm +-rwxr-xr-x 1 root root 18656 2020-06-04 10:25:26.000000000 -0700 pldd +-rwxr-xr-x 1 root root 30808 2019-08-09 08:37:27.000000000 -0700 pmap +-rwxr-xr-x 1 root root 4134 2020-10-19 03:57:24.000000000 -0700 pod2html +-rwxr-xr-x 1 root root 15079 2020-10-19 03:57:24.000000000 -0700 pod2man +-rwxr-xr-x 1 root root 10979 2020-10-19 03:57:24.000000000 -0700 pod2text +-rwxr-xr-x 1 root root 3948 2020-10-19 03:57:24.000000000 -0700 pod2usage +-rwxr-xr-x 1 root root 3658 2020-10-19 03:57:24.000000000 -0700 podchecker +-rwxr-xr-x 1 root root 2527 2020-10-19 03:57:24.000000000 -0700 podselect +-rwxr-xr-x 1 root root 8744 2018-05-29 13:13:20.000000000 -0700 pollinate +-rwxr-xr-x 1 root root 71960 2018-01-18 01:43:49.000000000 -0800 pr +-rwxr-xr-x 1 root root 47304 2018-02-09 18:09:07.000000000 -0800 preconv +lrwxrwxrwx 1 root root 11 2016-07-15 05:06:12.000000000 -0700 print -> run-mailcap +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 printenv +-rwxr-xr-x 1 root root 22528 2018-01-17 03:27:24.000000000 -0800 printerbanner +-rwxr-xr-x 1 root root 51384 2018-01-18 01:43:49.000000000 -0800 printf +-rwxr-xr-x 1 root root 35424 2020-09-16 11:43:15.000000000 -0700 prlimit +-rwxr-xr-x 1 root root 13588 2020-10-19 03:57:24.000000000 -0700 prove +-rwxr-xr-x 1 root root 18504 2018-12-11 07:46:04.000000000 -0800 prtstat +lrwxrwxrwx 1 root root 9 2018-01-22 05:49:48.000000000 -0800 psfaddtable -> psfxtable +lrwxrwxrwx 1 root root 9 2018-01-22 05:49:48.000000000 -0800 psfgettable -> psfxtable +lrwxrwxrwx 1 root root 9 2018-01-22 05:49:48.000000000 -0800 psfstriptable -> psfxtable +-rwxr-xr-x 1 root root 18424 2018-01-22 05:49:48.000000000 -0800 psfxtable +-rwxr-xr-x 1 root root 10232 2018-12-11 07:46:04.000000000 -0800 pslog +-rwxr-xr-x 1 root root 27592 2018-12-11 07:46:04.000000000 -0800 pstree +lrwxrwxrwx 1 root root 6 2018-12-11 07:46:04.000000000 -0800 pstree.x11 -> pstree +-rwxr-xr-x 1 root root 3549 2020-10-19 03:57:24.000000000 -0700 ptar +-rwxr-xr-x 1 root root 2628 2020-10-19 03:57:24.000000000 -0700 ptardiff +-rwxr-xr-x 1 root root 4392 2020-10-19 03:57:24.000000000 -0700 ptargrep +-rwxr-xr-x 1 root root 71928 2018-01-18 01:43:49.000000000 -0800 ptx +-rwxr-xr-x 1 root root 1149 2017-12-04 05:46:48.000000000 -0800 purge-old-kernels +-rwxr-xr-x 1 root root 10312 2019-08-09 08:37:27.000000000 -0700 pwdx +-rwxr-xr-x 1 root root 7812 2018-10-25 04:11:00.000000000 -0700 py3clean +-rwxr-xr-x 1 root root 12119 2018-10-25 04:11:00.000000000 -0700 py3compile +lrwxrwxrwx 1 root root 31 2018-10-25 04:11:00.000000000 -0700 py3versions -> ../share/python3/py3versions.py +lrwxrwxrwx 1 root root 26 2018-03-26 12:42:23.000000000 -0700 pybuild -> ../share/dh-python/pybuild +lrwxrwxrwx 1 root root 8 2018-10-25 04:11:00.000000000 -0700 pydoc3 -> pydoc3.6 +-rwxr-xr-x 1 root root 79 2021-01-26 07:33:00.000000000 -0800 pydoc3.6 +lrwxrwxrwx 1 root root 12 2018-10-25 04:11:00.000000000 -0700 pygettext3 -> pygettext3.6 +-rwxr-xr-x 1 root root 21547 2021-01-26 07:33:00.000000000 -0800 pygettext3.6 +-rwxr-xr-x 1 root root 392 2020-03-16 10:24:46.000000000 -0700 pyhtmlizer3 +-rwxr-xr-x 1 root root 372 2017-09-25 12:23:43.000000000 -0700 pyjwt3 +lrwxrwxrwx 1 root root 9 2018-10-25 04:11:00.000000000 -0700 python3 -> python3.6 +-rwxr-xr-x 2 root root 4526456 2021-01-26 07:33:00.000000000 -0800 python3.6 +lrwxrwxrwx 1 root root 33 2021-01-26 07:33:00.000000000 -0800 python3.6-config -> x86_64-linux-gnu-python3.6-config +-rwxr-xr-x 2 root root 4526456 2021-01-26 07:33:00.000000000 -0800 python3.6m +lrwxrwxrwx 1 root root 34 2021-01-26 07:33:00.000000000 -0800 python3.6m-config -> x86_64-linux-gnu-python3.6m-config +lrwxrwxrwx 1 root root 16 2018-10-25 04:11:00.000000000 -0700 python3-config -> python3.6-config +-rwxr-xr-x 1 root root 1018 2017-10-28 13:10:15.000000000 -0700 python3-jsondiff +-rwxr-xr-x 1 root root 3661 2017-10-28 13:10:15.000000000 -0700 python3-jsonpatch +-rwxr-xr-x 1 root root 1342 2016-05-01 16:14:11.000000000 -0700 python3-jsonpointer +-rwxr-xr-x 1 root root 398 2017-11-15 11:43:29.000000000 -0800 python3-jsonschema +lrwxrwxrwx 1 root root 10 2018-10-25 04:11:00.000000000 -0700 python3m -> python3.6m +lrwxrwxrwx 1 root root 17 2018-10-25 04:11:00.000000000 -0700 python3m-config -> python3.6m-config +lrwxrwxrwx 1 root root 23 2021-02-12 00:45:35.000000000 -0800 ranlib -> x86_64-linux-gnu-ranlib +lrwxrwxrwx 1 root root 21 2019-08-05 12:24:40.000000000 -0700 rcp -> /etc/alternatives/rcp +-rwxr-xr-x 1 root root 144840 2020-03-23 05:26:28.000000000 -0700 rctest +-rwxr-xr-x 1 root root 26696 2020-07-15 08:16:31.000000000 -0700 rdma +lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 readelf -> x86_64-linux-gnu-readelf +-rwxr-xr-x 1 root root 47320 2018-01-18 01:43:49.000000000 -0800 realpath +-rwxr-xr-x 1 root root 14408 2020-09-16 11:43:15.000000000 -0700 rename.ul +-rwxr-xr-x 1 root root 14408 2020-09-16 11:43:15.000000000 -0700 renice +lrwxrwxrwx 1 root root 4 2018-05-23 01:08:27.000000000 -0700 reset -> tset +-rwxr-xr-x 1 root root 18568 2018-01-22 05:49:48.000000000 -0800 resizecons +-rwxr-xr-x 1 root root 38992 2020-09-16 11:43:15.000000000 -0700 resizepart +-rwxr-xr-x 1 root root 10312 2020-09-16 11:43:15.000000000 -0700 rev +-rwxr-xr-x 1 root root 107032 2020-03-23 05:26:28.000000000 -0700 rfcomm +-rwxr-xr-x 1 root root 30 2017-07-11 06:19:59.000000000 -0700 rgrep +-rwxr-xr-x 1 root root 87229416 2020-04-14 12:53:49.741997779 -0700 rjc +lrwxrwxrwx 1 root root 24 2019-08-05 12:24:40.000000000 -0700 rlogin -> /etc/alternatives/rlogin +-rwxr-xr-x 1 root root 208 2020-07-15 08:16:31.000000000 -0700 routef +-rwxr-xr-x 1 root root 1656 2020-07-15 08:16:31.000000000 -0700 routel +-rwxr-xr-x 1 root root 100896 2020-06-04 10:25:26.000000000 -0700 rpcgen +lrwxrwxrwx 1 root root 21 2019-08-05 12:24:40.000000000 -0700 rsh -> /etc/alternatives/rsh +-rwxr-xr-x 1 root root 500024 2020-02-18 13:03:13.000000000 -0800 rsync +lrwxrwxrwx 1 root root 6 2020-07-15 08:16:31.000000000 -0700 rtstat -> lnstat +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 runcon +-rwxr-xr-x 1 root root 18161 2016-07-15 05:06:12.000000000 -0700 run-mailcap +-rwxr-xr-x 1 root root 3592 2014-01-15 14:24:04.000000000 -0800 run-one +lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 run-one-constantly -> run-one +lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 run-one-until-failure -> run-one +lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 run-one-until-success -> run-one +lrwxrwxrwx 1 root root 7 2014-01-15 14:40:51.000000000 -0800 run-this-one -> run-one +lrwxrwxrwx 1 root root 23 2019-08-05 12:23:26.000000000 -0700 rview -> /etc/alternatives/rview +lrwxrwxrwx 1 root root 22 2019-08-05 12:24:27.000000000 -0700 rvim -> /etc/alternatives/rvim +-rwxr-xr-x 1 root root 313824 2020-01-17 03:24:09.000000000 -0800 sadf +lrwxrwxrwx 1 root root 21 2019-10-30 14:02:28.138438060 -0700 sar -> /etc/alternatives/sar +-rwxr-xr-x 1 root root 120720 2020-01-17 03:24:09.000000000 -0800 sar.sysstat +-rwxr-xr-x 1 root root 10469 2017-12-30 10:15:02.000000000 -0800 savelog +-rwxr-xr-x 1 root root 100496 2019-03-04 04:17:51.000000000 -0800 scp +-rwxr-xr-x 1 root root 465928 2021-02-23 09:46:52.000000000 -0800 screen +-rwxr-xr-x 1 root root 10232 2018-01-22 05:49:48.000000000 -0800 screendump +-rwxr-xr-x 1 root root 30792 2020-09-16 11:43:15.000000000 -0700 script +-rwxr-xr-x 1 root root 26704 2020-09-16 11:43:15.000000000 -0700 scriptreplay +-rwxr-xr-x 1 root root 51296 2017-08-04 14:20:16.000000000 -0700 sdiff +-rwxr-xr-x 1 root root 209848 2020-03-23 05:26:28.000000000 -0700 sdptool +lrwxrwxrwx 1 root root 11 2016-07-15 05:06:12.000000000 -0700 see -> run-mailcap +-rwxr-xr-x 1 root root 2442 2018-03-12 03:17:53.000000000 -0700 select-editor +-rwxr-xr-x 1 root root 1209 2018-03-12 03:17:53.000000000 -0700 sensible-browser +-rwxr-xr-x 1 root root 1109 2018-03-12 03:17:53.000000000 -0700 sensible-editor +-rwxr-xr-x 1 root root 433 2018-03-12 03:17:53.000000000 -0700 sensible-pager +-rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 seq +-rwxr-xr-x 1 root root 18784 2020-09-16 11:43:15.000000000 -0700 setarch +lrwxrwxrwx 1 root root 12 2019-08-05 12:24:25.000000000 -0700 setfacl -> /bin/setfacl +-rwxr-xr-x 1 root root 10312 2018-01-22 05:49:48.000000000 -0800 setkeycodes +-rwxr-xr-x 1 root root 14392 2018-01-22 05:49:48.000000000 -0800 setleds +-rwxr-xr-x 1 root root 10312 2018-01-22 05:49:48.000000000 -0800 setlogcons +-rwxr-xr-x 1 root root 10344 2018-01-22 05:49:48.000000000 -0800 setmetamode +-rwxr-xr-x 1 root root 26704 2019-02-10 10:25:12.000000000 -0800 setpci +-rwxr-xr-x 1 root root 10312 2020-09-16 11:43:15.000000000 -0700 setsid +-rwxr-xr-x 1 root root 43088 2020-09-16 11:43:15.000000000 -0700 setterm +-rwxr-xr-x 1 root root 153960 2019-03-04 04:17:51.000000000 -0800 sftp +lrwxrwxrwx 1 root root 6 2019-03-22 12:05:38.000000000 -0700 sg -> newgrp +-rwxr-xr-x 1 root root 47320 2018-01-18 01:43:49.000000000 -0800 sha1sum +-rwxr-xr-x 1 root root 55512 2018-01-18 01:43:49.000000000 -0800 sha224sum +-rwxr-xr-x 1 root root 55512 2018-01-18 01:43:49.000000000 -0800 sha256sum +-rwxr-xr-x 1 root root 59608 2018-01-18 01:43:49.000000000 -0800 sha384sum +-rwxr-xr-x 1 root root 59608 2018-01-18 01:43:49.000000000 -0800 sha512sum +-rwxr-xr-x 1 root root 9371 2020-10-19 03:57:24.000000000 -0700 shasum +-rwxr-xr-x 1 root root 18504 2018-01-22 05:49:48.000000000 -0800 showconsolefont +-rwxr-xr-x 1 root root 14408 2018-01-22 05:49:48.000000000 -0800 showkey +-rwxr-xr-x 1 root root 59608 2018-01-18 01:43:49.000000000 -0800 shred +-rwxr-xr-x 1 root root 55480 2018-01-18 01:43:49.000000000 -0800 shuf +lrwxrwxrwx 1 root root 21 2021-02-12 00:45:35.000000000 -0800 size -> x86_64-linux-gnu-size +-rwxr-xr-x 1 root root 26704 2019-08-09 08:37:27.000000000 -0700 skill +-rwxr-xr-x 1 root root 18512 2019-08-09 08:37:27.000000000 -0700 slabtop +lrwxrwxrwx 1 root root 3 2019-03-04 04:17:51.000000000 -0800 slogin -> ssh +-rwxr-xr-x 1 root root 34824 2018-04-03 05:43:49.000000000 -0700 slurm +-rwxr-xr-x 1 root root 19428040 2021-02-02 00:21:12.000000000 -0800 snap +lrwxrwxrwx 1 root root 20 2021-02-02 00:21:12.000000000 -0800 snapctl -> ../lib/snapd/snapctl +-rwxr-xr-x 1 root root 39048 2021-02-02 00:21:12.000000000 -0800 snapfuse +lrwxrwxrwx 1 root root 5 2019-08-09 08:37:27.000000000 -0700 snice -> skill +-rwxr-xr-x 1 root root 165384 2020-08-17 18:58:51.000000000 -0700 sntp +-rwxr-xr-x 1 root root 30920 2018-02-09 18:09:07.000000000 -0800 soelim +-rwxr-xr-x 1 root root 113120 2018-01-18 01:43:49.000000000 -0800 sort +lrwxrwxrwx 1 root root 28 2020-07-07 12:34:42.000000000 -0700 sosreport -> ../share/sosreport/sosreport +-rwxr-xr-x 1 root root 4308 2020-06-04 10:25:26.000000000 -0700 sotruss +-rwxr-xr-x 1 root root 19150 2020-10-19 03:57:24.000000000 -0700 splain +-rwxr-xr-x 1 root root 55936 2018-01-18 01:43:49.000000000 -0800 split +-rwxr-xr-x 1 root root 10232 2018-01-22 05:49:48.000000000 -0800 splitfont +-rwxr-xr-x 1 root root 26840 2020-06-04 10:25:26.000000000 -0700 sprof +-rwxr-xr-x 1 root root 727848 2019-03-04 04:17:51.000000000 -0800 ssh +-rwxr-xr-x 1 root root 346248 2019-03-04 04:17:51.000000000 -0800 ssh-add +-rwxr-sr-x 1 root ssh 362640 2019-03-04 04:17:51.000000000 -0800 ssh-agent +-rwxr-xr-x 1 root root 1456 2018-01-16 09:39:31.000000000 -0800 ssh-argv0 +-rwxr-xr-x 1 root root 10658 2017-10-02 12:34:26.000000000 -0700 ssh-copy-id +-rwxr-xr-x 1 root root 1771 2018-05-16 16:40:43.000000000 -0700 ssh-import-id +-rwxr-xr-x 1 root root 782 2016-01-29 21:11:11.000000000 -0800 ssh-import-id-gh +-rwxr-xr-x 1 root root 782 2016-01-29 21:11:25.000000000 -0800 ssh-import-id-lp +-rwxr-xr-x 1 root root 420000 2019-03-04 04:17:51.000000000 -0800 ssh-keygen +-rwxr-xr-x 1 root root 420000 2019-03-04 04:17:51.000000000 -0800 ssh-keyscan +-rwxr-xr-x 1 root root 80088 2018-01-18 01:43:49.000000000 -0800 stat +-rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 stdbuf +-rwxr-xr-x 1 root root 1378552 2018-04-11 07:18:47.000000000 -0700 strace +-rwxr-xr-x 1 root root 2644 2018-02-13 15:00:00.000000000 -0800 strace-log-merge +lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 strings -> x86_64-linux-gnu-strings +lrwxrwxrwx 1 root root 22 2021-02-12 00:45:35.000000000 -0800 strip -> x86_64-linux-gnu-strip +-rwsr-xr-x 1 root root 149080 2021-01-19 06:36:00.000000000 -0800 sudo +lrwxrwxrwx 1 root root 4 2021-01-19 06:36:00.000000000 -0800 sudoedit -> sudo +-rwxr-xr-x 1 root root 56128 2021-01-19 06:36:00.000000000 -0800 sudoreplay +-rwxr-xr-x 1 root root 39104 2018-01-18 01:43:49.000000000 -0800 sum +-rwxr-xr-x 1 root root 113384 2020-09-17 06:57:57.000000000 -0700 symcryptrun +-rwxr-xr-x 1 root root 1558792 2020-07-08 11:59:14.000000000 -0700 systemd-analyze +-rwxr-xr-x 1 root root 10312 2020-07-08 11:59:14.000000000 -0700 systemd-cat +-rwxr-xr-x 1 root root 14408 2020-07-08 11:59:14.000000000 -0700 systemd-cgls +-rwxr-xr-x 1 root root 30816 2020-07-08 11:59:14.000000000 -0700 systemd-cgtop +-rwxr-xr-x 1 root root 22600 2020-07-08 11:59:14.000000000 -0700 systemd-delta +-rwxr-xr-x 1 root root 10304 2020-07-08 11:59:14.000000000 -0700 systemd-detect-virt +-rwxr-xr-x 1 root root 43104 2020-07-08 11:59:14.000000000 -0700 systemd-mount +-rwxr-xr-x 1 root root 10304 2020-07-08 11:59:14.000000000 -0700 systemd-path +-rwxr-xr-x 1 root root 88136 2020-07-08 11:59:14.000000000 -0700 systemd-resolve +-rwxr-xr-x 1 root root 43080 2020-07-08 11:59:14.000000000 -0700 systemd-run +-rwxr-xr-x 1 root root 18504 2020-07-08 11:59:14.000000000 -0700 systemd-socket-activate +-rwxr-xr-x 1 root root 14408 2020-07-08 11:59:14.000000000 -0700 systemd-stdio-bridge +lrwxrwxrwx 1 root root 13 2020-07-08 11:59:14.000000000 -0700 systemd-umount -> systemd-mount +-rwxr-xr-x 1 root root 14328 2018-05-23 01:08:27.000000000 -0700 tabs +-rwxr-xr-x 1 root root 39096 2018-01-18 01:43:49.000000000 -0800 tac +-rwxr-xr-x 1 root root 67832 2018-01-18 01:43:49.000000000 -0800 tail +-rwxr-xr-x 1 root root 39056 2020-01-17 03:24:09.000000000 -0800 tapestat +-rwxr-xr-x 1 root root 30800 2020-09-16 11:43:15.000000000 -0700 taskset +-rwxr-xr-x 1 root root 129224 2018-02-09 18:09:07.000000000 -0800 tbl +-rwxr-xr-x 1 root root 35032 2018-01-18 01:43:49.000000000 -0800 tee +lrwxrwxrwx 1 root root 24 2019-08-05 12:24:22.000000000 -0700 telnet -> /etc/alternatives/telnet +-rwxr-xr-x 1 root root 111024 2016-11-07 10:06:40.000000000 -0800 telnet.netkit +-rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 test +-rwxr-xr-x 1 root root 84080 2018-05-23 01:08:27.000000000 -0700 tic +-rwxr-xr-x 1 root root 14720 2017-04-21 13:57:03.000000000 -0700 time +-rwxr-xr-x 1 root root 22600 2020-07-08 11:59:14.000000000 -0700 timedatectl +-rwxr-xr-x 1 root root 39552 2018-01-18 01:43:49.000000000 -0800 timeout +-rwxr-xr-x 1 root root 386 2020-03-16 10:24:46.000000000 -0700 tkconch3 +-rwxr-xr-x 1 root root 14424 2019-08-09 08:37:27.000000000 -0700 tload +-rwxr-xr-x 1 root root 577088 2019-07-04 12:45:07.000000000 -0700 tmux +-rwxr-xr-x 1 root root 14328 2018-05-23 01:08:27.000000000 -0700 toe +-rwxr-xr-x 1 root root 108304 2019-08-09 08:37:27.000000000 -0700 top +lrwxrwxrwx 1 root root 10 2019-08-05 12:23:03.000000000 -0700 touch -> /bin/touch +-rwxr-xr-x 1 root root 18456 2018-05-23 01:08:27.000000000 -0700 tput +-rwxr-xr-x 1 root root 47288 2018-01-18 01:43:49.000000000 -0800 tr +-rwxr-xr-x 1 root root 14344 2019-06-28 04:05:23.000000000 -0700 tracepath +lrwxrwxrwx 1 root root 28 2020-07-27 14:56:20.508049125 -0700 traceproto -> /etc/alternatives/traceproto +-rwxr-xr-x 1 root root 2885 2016-08-29 08:45:51.000000000 -0700 traceproto.db +lrwxrwxrwx 1 root root 28 2020-07-27 14:56:20.460021872 -0700 traceroute -> /etc/alternatives/traceroute +lrwxrwxrwx 1 root root 29 2019-08-05 12:24:21.000000000 -0700 traceroute6 -> /etc/alternatives/traceroute6 +lrwxrwxrwx 1 root root 13 2016-08-29 08:45:51.000000000 -0700 traceroute6.db -> traceroute.db +-rwsr-xr-x 1 root root 18448 2019-06-28 04:05:23.000000000 -0700 traceroute6.iputils +-rwxr-xr-x 1 root root 68768 2016-08-29 08:45:51.000000000 -0700 traceroute.db +-rwxr-xr-x 1 root root 1618 2016-08-29 08:45:51.000000000 -0700 traceroute-nanog +-rwxr-xr-x 1 root root 382 2020-03-16 10:24:46.000000000 -0700 trial3 +-rwxr-xr-x 1 root root 736608 2018-02-09 18:09:07.000000000 -0800 troff +-rwxr-xr-x 1 root root 39096 2018-01-18 01:43:49.000000000 -0800 truncate +-rwxr-xr-x 1 root root 22528 2018-05-23 01:08:27.000000000 -0700 tset +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 tsort +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 tty +-rwxr-xr-x 1 root root 382 2020-03-16 10:24:46.000000000 -0700 twist3 +-rwxr-xr-x 1 root root 384 2020-03-16 10:24:46.000000000 -0700 twistd3 +-rwxr-xr-x 1 root root 15397 2020-06-04 10:25:26.000000000 -0700 tzselect +lrwxrwxrwx 1 root root 16 2018-03-21 10:20:04.000000000 -0700 ua -> ubuntu-advantage +-rwxr-xr-x 1 root root 4596 2018-03-21 10:20:04.000000000 -0700 ubuntu-advantage +lrwxrwxrwx 1 root root 10 2021-01-26 04:21:46.000000000 -0800 ubuntu-bug -> apport-bug +lrwxrwxrwx 1 root root 25 2021-02-02 00:21:12.000000000 -0800 ubuntu-core-launcher -> ../lib/snapd/snap-confine +-rwxr-xr-x 1 root root 8033 2020-06-03 11:41:50.000000000 -0700 ubuntu-support-status +-rwxr-xr-x 1 root root 40685 2018-02-25 16:58:23.000000000 -0800 ucf +-rwxr-xr-x 1 root root 19367 2018-02-25 16:58:23.000000000 -0800 ucfq +-rwxr-xr-x 1 root root 10722 2018-02-25 16:58:23.000000000 -0800 ucfr +-rwxr-xr-x 1 root root 14344 2018-01-17 03:27:24.000000000 -0800 ul +-rwxr-xr-x 1 root root 84529 2020-02-17 03:37:03.000000000 -0800 unattended-upgrade +lrwxrwxrwx 1 root root 18 2020-02-17 03:37:03.000000000 -0800 unattended-upgrades -> unattended-upgrade +-rwxr-xr-x 1 root root 39128 2018-01-18 01:43:49.000000000 -0800 unexpand +-rwxr-xr-x 1 root root 530 2018-01-22 05:49:48.000000000 -0800 unicode_stop +-rwxr-xr-x 1 root root 43224 2018-01-18 01:43:49.000000000 -0800 uniq +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 unlink +lrwxrwxrwx 1 root root 24 2019-08-05 12:23:24.000000000 -0700 unlzma -> /etc/alternatives/unlzma +-rwxr-xr-x 1 root root 2859 2019-10-07 03:53:35.000000000 -0700 unmkinitramfs +-rwxr-xr-x 2 root root 116944 2017-12-27 11:41:06.000000000 -0800 unpigz +-rwxr-xr-x 1 root root 18712 2020-09-16 11:43:15.000000000 -0700 unshare +-rwxr-xr-x 1 root root 98008 2018-07-05 12:49:18.000000000 -0700 unsquashfs +lrwxrwxrwx 1 root root 2 2017-06-28 09:39:19.000000000 -0700 unxz -> xz +-rwxr-xr-x 1 root root 47112 2019-09-05 14:05:14.000000000 -0700 update-alternatives +lrwxrwxrwx 1 root root 26 2019-08-05 12:24:17.000000000 -0700 updatedb -> /etc/alternatives/updatedb +-rwxr-xr-x 1 root root 47184 2018-03-01 08:07:16.000000000 -0800 updatedb.mlocate +-rwxr-xr-x 1 root root 11635 2020-08-17 18:58:51.000000000 -0700 update-leap +-rwxr-xr-x 1 root root 51392 2017-10-10 13:56:05.000000000 -0700 update-mime-database +-rwxr-xr-x 1 root root 14328 2019-01-25 08:38:41.000000000 -0800 upower +-rwxr-xr-x 1 root root 10312 2019-08-09 08:37:27.000000000 -0700 uptime +-rwxr-xr-x 1 root root 4216 2017-04-21 13:59:17.000000000 -0700 usb-devices +-rwxr-xr-x 1 root root 22608 2017-04-21 13:59:17.000000000 -0700 usbhid-dump +-rwxr-xr-x 1 root root 35000 2018-01-18 01:43:49.000000000 -0800 users +-rwxr-xr-x 1 root root 22600 2020-09-16 11:43:15.000000000 -0700 utmpdump +-rwxr-xr-x 1 root root 14408 2020-09-16 11:43:15.000000000 -0700 uuidgen +-rwxr-xr-x 1 root root 34896 2020-09-16 11:43:15.000000000 -0700 uuidparse +-rwxr-xr-x 1 root root 6913 2018-04-13 06:07:55.000000000 -0700 vcs-run +-rwxr-xr-x 1 root root 129248 2020-03-25 03:33:50.000000000 -0700 VGAuthService +lrwxrwxrwx 1 root root 20 2019-08-05 12:23:26.000000000 -0700 vi -> /etc/alternatives/vi +lrwxrwxrwx 1 root root 22 2019-08-05 12:23:26.000000000 -0700 view -> /etc/alternatives/view +-rwxr-xr-x 1 root root 2640 2017-12-04 05:46:48.000000000 -0800 vigpg +lrwxrwxrwx 1 root root 21 2019-08-05 12:24:27.000000000 -0700 vim -> /etc/alternatives/vim +-rwxr-xr-x 1 root root 2675336 2020-10-13 08:49:09.000000000 -0700 vim.basic +lrwxrwxrwx 1 root root 25 2019-08-05 12:24:27.000000000 -0700 vimdiff -> /etc/alternatives/vimdiff +-rwxr-xr-x 1 root root 1108024 2020-10-13 08:49:09.000000000 -0700 vim.tiny +-rwxr-xr-x 1 root root 2099 2020-10-13 08:49:09.000000000 -0700 vimtutor +-rwxr-xr-x 1 root root 51696 2020-03-25 03:33:50.000000000 -0700 vmhgfs-fuse +-rwxr-xr-x 1 root root 34912 2019-08-09 08:37:27.000000000 -0700 vmstat +-rwxr-xr-x 1 root root 55552 2020-03-25 03:33:50.000000000 -0700 vmtoolsd +-rwxr-xr-x 1 root root 10312 2020-03-25 03:33:50.000000000 -0700 vmware-checkvm +-rwxr-xr-x 1 root root 10312 2020-03-25 03:33:50.000000000 -0700 vmware-hgfsclient +-rwxr-xr-x 1 root root 18424 2020-03-25 03:33:50.000000000 -0700 vmware-namespace-cmd +-rwxr-xr-x 1 root root 18424 2020-03-25 03:33:50.000000000 -0700 vmware-rpctool +-rwxr-xr-x 1 root root 39200 2020-03-25 03:33:50.000000000 -0700 vmware-toolbox-cmd +-rwxr-xr-x 1 root root 14328 2020-03-25 03:33:50.000000000 -0700 vmware-vgauth-cmd +-rwxr-xr-x 1 root root 18440 2020-03-25 03:33:50.000000000 -0700 vmware-vgauth-smoketest +-rwxr-xr-x 1 root root 18848 2020-03-25 03:33:50.000000000 -0700 vmware-vmblock-fuse +-rwxr-xr-x 1 root root 10312 2020-03-25 03:33:50.000000000 -0700 vmware-xferlogs +-rwxr-xr-x 1 root root 10232 2017-03-27 21:22:15.000000000 -0700 volname +lrwxrwxrwx 1 root root 19 2019-08-05 12:23:04.000000000 -0700 w -> /etc/alternatives/w +-rwxr-sr-x 1 root tty 30800 2020-09-16 11:43:15.000000000 -0700 wall +-rwxr-xr-x 1 root root 22952 2019-08-09 08:37:27.000000000 -0700 watch +-rwxr-xr-x 1 root root 14328 2020-09-17 06:57:57.000000000 -0700 watchgnupg +-rwxr-xr-x 1 root root 43200 2018-01-18 01:43:49.000000000 -0800 wc +-rwxr-xr-x 1 root root 499264 2019-04-08 11:51:50.000000000 -0700 wget +-rwxr-xr-x 1 root root 48104 2018-08-04 12:16:12.000000000 -0700 whatis +-rwxr-xr-x 1 root root 27144 2020-09-16 11:43:15.000000000 -0700 whereis +lrwxrwxrwx 1 root root 10 2019-08-05 12:23:03.000000000 -0700 which -> /bin/which +-rwxr-xr-x 1 root root 51416 2018-01-18 01:43:49.000000000 -0800 who +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 whoami +-rwxr-xr-x 1 root root 2107 2017-12-04 05:46:48.000000000 -0800 wifi-status +-rwxr-xr-x 1 root root 22536 2018-04-03 05:19:52.000000000 -0700 wmdocker +-rwxr-xr-x 1 root root 18504 2019-08-09 08:37:27.000000000 -0700 w.procps +lrwxrwxrwx 1 root root 23 2019-08-05 12:24:25.000000000 -0700 write -> /etc/alternatives/write +lrwxrwxrwx 1 root root 7 2020-09-16 11:43:15.000000000 -0700 x86_64 -> setarch +-rwxr-xr-x 1 root root 31280 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-addr2line +-rwxr-xr-x 1 root root 59640 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ar +-rwxr-xr-x 1 root root 917488 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-as +-rwxr-xr-x 1 root root 26744 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-c++filt +lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-cpp -> cpp-7 +-rwxr-xr-x 1 root root 1047488 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-cpp-7 +-rwxr-xr-x 1 root root 2886928 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-dwp +-rwxr-xr-x 1 root root 31184 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-elfedit +lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-g++ -> g++-7 +-rwxr-xr-x 1 root root 1047488 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-g++-7 +lrwxrwxrwx 1 root root 5 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcc -> gcc-7 +-rwxr-xr-x 1 root root 1047488 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcc-7 +lrwxrwxrwx 1 root root 8 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcc-ar -> gcc-ar-7 +-rwxr-xr-x 1 root root 31200 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcc-ar-7 +lrwxrwxrwx 1 root root 8 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcc-nm -> gcc-nm-7 +-rwxr-xr-x 1 root root 31200 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcc-nm-7 +lrwxrwxrwx 1 root root 12 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcc-ranlib -> gcc-ranlib-7 +-rwxr-xr-x 1 root root 31200 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcc-ranlib-7 +lrwxrwxrwx 1 root root 6 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcov -> gcov-7 +-rwxr-xr-x 1 root root 630880 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcov-7 +lrwxrwxrwx 1 root root 11 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcov-dump -> gcov-dump-7 +-rwxr-xr-x 1 root root 511928 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcov-dump-7 +lrwxrwxrwx 1 root root 11 2019-05-20 09:08:41.000000000 -0700 x86_64-linux-gnu-gcov-tool -> gcov-tool-7 +-rwxr-xr-x 1 root root 548856 2019-12-04 06:25:41.000000000 -0800 x86_64-linux-gnu-gcov-tool-7 +lrwxrwxrwx 1 root root 24 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-gold -> x86_64-linux-gnu-ld.gold +-rwxr-xr-x 1 root root 102120 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-gprof +lrwxrwxrwx 1 root root 23 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ld -> x86_64-linux-gnu-ld.bfd +-rwxr-xr-x 1 root root 1783496 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ld.bfd +-rwxr-xr-x 1 root root 3111952 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ld.gold +-rwxr-xr-x 1 root root 44312 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-nm +-rwxr-xr-x 1 root root 235720 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-objcopy +-rwxr-xr-x 1 root root 414256 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-objdump +lrwxrwxrwx 1 root root 34 2020-04-14 09:35:39.217683591 -0700 x86_64-linux-gnu-pkg-config -> /usr/share/pkg-config-crosswrapper +lrwxrwxrwx 1 root root 34 2021-01-26 07:33:00.000000000 -0800 x86_64-linux-gnu-python3.6-config -> x86_64-linux-gnu-python3.6m-config +-rwxr-xr-x 1 root root 3283 2021-01-26 07:33:00.000000000 -0800 x86_64-linux-gnu-python3.6m-config +lrwxrwxrwx 1 root root 33 2018-10-25 04:11:00.000000000 -0700 x86_64-linux-gnu-python3-config -> x86_64-linux-gnu-python3.6-config +lrwxrwxrwx 1 root root 34 2018-10-25 04:11:00.000000000 -0700 x86_64-linux-gnu-python3m-config -> x86_64-linux-gnu-python3.6m-config +-rwxr-xr-x 1 root root 59672 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-ranlib +-rwxr-xr-x 1 root root 596440 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-readelf +-rwxr-xr-x 1 root root 31024 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-size +-rwxr-xr-x 1 root root 31232 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-strings +-rwxr-xr-x 1 root root 235728 2021-02-12 00:45:35.000000000 -0800 x86_64-linux-gnu-strip +-rwxr-xr-x 2 root root 51296 2017-04-21 13:54:08.000000000 -0700 x86_64-pc-linux-gnu-pkg-config +-rwxr-xr-x 1 root root 71896 2017-11-05 09:16:48.000000000 -0800 xargs +-rwxr-xr-x 1 root root 52032 2017-11-21 11:47:37.000000000 -0800 xauth +-rwxr-xr-x 1 root root 153904 2016-12-05 18:04:51.000000000 -0800 xdelta3 +-rwxr-xr-x 1 root root 234 2018-03-23 08:58:57.000000000 -0700 xdg-user-dir +-rwxr-xr-x 1 root root 18504 2018-03-23 08:58:57.000000000 -0700 xdg-user-dirs-update +-rwxr-xr-x 1 root root 5164 2020-10-19 03:57:24.000000000 -0700 xsubpp +-rwxr-xr-x 1 root root 18552 2020-10-13 08:49:09.000000000 -0700 xxd +-rwxr-xr-x 1 root root 76216 2017-06-28 09:39:19.000000000 -0700 xz +lrwxrwxrwx 1 root root 2 2017-06-28 09:39:19.000000000 -0700 xzcat -> xz +lrwxrwxrwx 1 root root 6 2017-06-28 09:39:19.000000000 -0700 xzcmp -> xzdiff +-rwxr-xr-x 1 root root 6632 2017-06-28 09:39:19.000000000 -0700 xzdiff +lrwxrwxrwx 1 root root 6 2017-06-28 09:39:19.000000000 -0700 xzegrep -> xzgrep +lrwxrwxrwx 1 root root 6 2017-06-28 09:39:19.000000000 -0700 xzfgrep -> xzgrep +-rwxr-xr-x 1 root root 5628 2017-06-28 09:39:19.000000000 -0700 xzgrep +-rwxr-xr-x 1 root root 1802 2017-06-28 09:39:19.000000000 -0700 xzless +-rwxr-xr-x 1 root root 2161 2017-06-28 09:39:19.000000000 -0700 xzmore +-rwxr-xr-x 1 root root 30904 2018-01-18 01:43:49.000000000 -0800 yes +-rwxr-xr-x 1 root root 18488 2020-06-04 10:25:26.000000000 -0700 zdump +-rwxr-xr-x 1 root root 48497 2020-10-19 03:57:24.000000000 -0700 zipdetails + diff --git a/tests/test_ls.py b/tests/test_ls.py index 9383c577..cb9c9280 100644 --- a/tests/test_ls.py +++ b/tests/test_ls.py @@ -112,6 +112,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-empty-folder.out'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_lR_empty_folder = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-iso.out'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_ls_l_iso = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ls.json'), 'r', encoding='utf-8') as f: self.centos_7_7_ls_json = json.loads(f.read()) @@ -215,6 +218,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ls-lR-empty-folder.json'), 'r', encoding='utf-8') as f: self.osx_10_14_6_ls_lR_empty_folder_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ls-l-iso.json'), 'r', encoding='utf-8') as f: + self.ubuntu_18_4_ls_l_iso_json = json.loads(f.read()) + def test_ls_empty_dir(self): """ Test plain 'ls' on an empty directory @@ -425,6 +431,12 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.ls.parse(self.osx_10_14_6_ls_lR_empty_folder, quiet=True), self.osx_10_14_6_ls_lR_empty_folder_json) + def test_ls_l_iso_ubuntu_18_4(self): + """ + Test 'ls -l --time-style=full-iso' for files with convertible dates on Ubuntu 18.4 + """ + self.assertEqual(jc.parsers.ls.parse(self.ubuntu_18_4_ls_l_iso, quiet=True), self.ubuntu_18_4_ls_l_iso_json) + if __name__ == '__main__': unittest.main()