-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprograms.kmdr.json
More file actions
1888 lines (1888 loc) · 45.8 KB
/
programs.kmdr.json
File metadata and controls
1888 lines (1888 loc) · 45.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"programs": [
{
"name": "7z",
"summary": "A file archiver with high compression ratio format"
},
{
"name": "7zr",
"summary": "A file archiver with high compression ratio format"
},
{
"name": "ab",
"summary": "Apache HTTP server benchmarking tool"
},
{
"name": "ack",
"summary": "Grep-Like text finder"
},
{
"name": "adb",
"summary": "Android Debug Bridge"
},
{
"name": "add-apt-repository",
"summary": "Add repository into the /etc/apt/sources.list or /etc/apt/sources.list.d or removes an existing one"
},
{
"name": "adduser",
"summary": "Add users and groups according to /etc/adduser.conf"
},
{
"name": "age",
"summary": "A simple, modern and secure encryption tool"
},
{
"name": "alias",
"summary": "Define or display command aliases"
},
{
"name": "amazon-linux-extras",
"summary": "Provide modern application environment with the latest enhancements from the Linux community"
},
{
"name": "ansible-galaxy",
"summary": "Create and manage Ansible roles"
},
{
"name": "ansible-playbook",
"summary": "Runs Ansible playbooks, executing the defined tasks on the targeted hosts"
},
{
"name": "ansible",
"summary": "Define and run a single task 'playbook' against a set of hosts"
},
{
"name": "apachectl",
"summary": "Apache Hypertext Transfer Protocol Server"
},
{
"name": "apropos",
"summary": "Search the manual page names and descriptions"
},
{
"name": "apt-cache",
"summary": "Query the APT cache"
},
{
"name": "apt-get",
"summary": "APT package handling utility"
},
{
"name": "apt-key",
"summary": "APT key management utility"
},
{
"name": "apt-mark",
"summary": "Show, set and unset various settings for a package"
},
{
"name": "apt",
"summary": "Advanced Package Tool"
},
{
"name": "aptitude",
"summary": "High level interface to the package manager"
},
{
"name": "aria2c",
"summary": "The ultra fast download utility"
},
{
"name": "arp",
"summary": "Manipulate the system ARP cache"
},
{
"name": "at",
"summary": "Execute commands at a later time"
},
{
"name": "autossh",
"summary": "Monitor and restart ssh sessions"
},
{
"name": "awk",
"summary": "Pattern scanning and processing language"
},
{
"name": "aws",
"summary": "Command Line Interface is a unified tool to manage your AWS services"
},
{
"name": "az",
"summary": "The Azure command-line interface (CLI) is Microsoft's cross-platform command-line experience for managing Azure resources."
},
{
"name": "base32",
"summary": "Base32 encode/decode data and print to standard output"
},
{
"name": "base64",
"summary": "Base64 encode/decode data and print to standard output"
},
{
"name": "basename",
"summary": "Strip directory and suffix from filenames"
},
{
"name": "bash",
"summary": "GNU Bourne-Again SHell"
},
{
"name": "bats",
"summary": "Bash Automated Testing System"
},
{
"name": "bc",
"summary": "Arbitrary precision arithmetic language"
},
{
"name": "bg",
"summary": "Run jobs in the background"
},
{
"name": "bindkey",
"summary": "Link an editor command to a key or lists key bindings"
},
{
"name": "bmon",
"summary": "Bandwidth monitor and rate estimator"
},
{
"name": "bpkg",
"summary": "Package dependency manager"
},
{
"name": "brew",
"summary": "The missing package manager for macOS"
},
{
"name": "cal",
"summary": "Display a calendar"
},
{
"name": "cargo",
"summary": "The Rust package manager"
},
{
"name": "cat",
"summary": "Concatenate files and print on the standard output"
},
{
"name": "cd",
"summary": "Change working directory"
},
{
"name": "chcon",
"summary": "Change file SELinux security context"
},
{
"name": "chgrp",
"summary": "Change group ownership"
},
{
"name": "chmod",
"summary": "Change the file modes"
},
{
"name": "chown",
"summary": "Change the file ownership"
},
{
"name": "chroot",
"summary": "Run command or interactive shell with special root directory"
},
{
"name": "chrpath",
"summary": "Change the rpath or runpath in binaries"
},
{
"name": "chsh",
"summary": "Change login shell"
},
{
"name": "chuck",
"summary": "Audio programming language for real-time synthesis, composition, and performance"
},
{
"name": "clear",
"summary": "Clear the terminal screen"
},
{
"name": "clib",
"summary": "Package manager for the C programming language"
},
{
"name": "cmake",
"summary": "Cross-Platform Makefile Generator"
},
{
"name": "cmp",
"summary": "Compare two files"
},
{
"name": "cobra",
"summary": "Is both a library for creating powerful modern CLI applications as well as a program to generate applications and command files"
},
{
"name": "code",
"summary": "Command Line Interface that allow to you control how you launch the editor Visual Studio Code"
},
{
"name": "column",
"summary": "Columnate lists"
},
{
"name": "command",
"summary": "Execute a simple command"
},
{
"name": "complete",
"summary": "Edit command specific tab-completions"
},
{
"name": "composer",
"summary": "Dependency manager for PHP"
},
{
"name": "conda",
"summary": "Package, dependency and environment management for any language—Python, R, Ruby, Lua, Scala, Java, JavaScript, C/ C++, FORTRAN, and more"
},
{
"name": "configure",
"summary": "Script designed to aid in developing a program to be run on different target machines. It matches the libraries on the user's computer, with those required by the program before compiling it from its source code."
},
{
"name": "cp",
"summary": "Copy files and directories"
},
{
"name": "cppcheck",
"summary": "Tool for static C/C++ code analysis"
},
{
"name": "crew",
"summary": "Package manager for Chrome OS"
},
{
"name": "crontab",
"summary": "Schedule periodic background work"
},
{
"name": "ctr",
"summary": "Allow to create and manage containers run with containerd"
},
{
"name": "curl",
"summary": "Transfer a URL"
},
{
"name": "cut",
"summary": "Remove sections from each line of files"
},
{
"name": "date",
"summary": "Print or set the system date and time"
},
{
"name": "dd",
"summary": "Convert and copy a file."
},
{
"name": "declare",
"summary": "Declare variables and give them attributes"
},
{
"name": "deno",
"summary": "JavaScript/TypeScript runtime with secure defaults and a great developer experience"
},
{
"name": "df",
"summary": "Report file system disk space usage"
},
{
"name": "dh",
"summary": "Debhelper command sequencer"
},
{
"name": "diff",
"summary": "Compare files line by line"
},
{
"name": "diffstat",
"summary": "Make histogram from diff-output"
},
{
"name": "dig",
"summary": "Flexible tool for interrogating DNS name servers"
},
{
"name": "dir",
"summary": "List information about the files"
},
{
"name": "dirname",
"summary": "Strip non-directory suffix from file name"
},
{
"name": "disown",
"summary": "Remove jobs from the job table"
},
{
"name": "django-admin",
"summary": "Command-line utility for administrative task"
},
{
"name": "djangoadmin",
"summary": "Command-line utility for administrative tasks"
},
{
"name": "dmesg",
"summary": "Print or control the kernel ring buffer"
},
{
"name": "dmidecode",
"summary": "Table decoder"
},
{
"name": "dnf",
"summary": "Software package manager"
},
{
"name": "docker-compose",
"summary": "Define and run multi-container applications with Docker"
},
{
"name": "docker",
"summary": "Docker image and container command line interface"
},
{
"name": "doxygen",
"summary": "Documentation system for various programming languages"
},
{
"name": "dpkg-query",
"summary": "A tool to query the dpkg database"
},
{
"name": "dpkg-reconfigure",
"summary": "Reconfigure an already installed package"
},
{
"name": "dpkg",
"summary": "Package manager for Debian"
},
{
"name": "drush",
"summary": "Ship with lots of useful commands for interacting with code like modules/themes/profiles"
},
{
"name": "dtrace",
"summary": "Compatibile user application static probe generation tool"
},
{
"name": "du",
"summary": "Estimate file space usage"
},
{
"name": "duplicity",
"summary": "Encrypted incremental backup to local or remote storage"
},
{
"name": "easy_install",
"summary": "Download, build, install and manage Python packages"
},
{
"name": "echo",
"summary": "Display a line of text"
},
{
"name": "egrep",
"summary": "Search for a text pattern, using extended regular expressions to perform the match"
},
{
"name": "emacs",
"summary": "GNU project Emacs editor"
},
{
"name": "env",
"summary": "Run a program in a modified environment"
},
{
"name": "esxcli",
"summary": "Manage many aspects of an ESXi host with the ESXCLI command set"
},
{
"name": "etcdctl",
"summary": "Simple command line client for etcd"
},
{
"name": "eval",
"summary": "Construct command by concatenating arguments"
},
{
"name": "exa",
"summary": "A replacement for ls written in Rust"
},
{
"name": "exec",
"summary": "Bash exec builtin command"
},
{
"name": "exit",
"summary": "Exit a login shell."
},
{
"name": "export",
"summary": "Set export attribute for shell variables"
},
{
"name": "false",
"summary": "Return false value"
},
{
"name": "fd",
"summary": "Simple, fast and user-friendly alternative to find"
},
{
"name": "fdisk",
"summary": "Partition table manipulator for Linux"
},
{
"name": "fdupes",
"summary": "Program for identifying duplicate files residing within specified directories"
},
{
"name": "ffmpeg",
"summary": "Video converter"
},
{
"name": "fg",
"summary": "Run jobs in the foreground"
},
{
"name": "file",
"summary": "Determine file type"
},
{
"name": "fincore",
"summary": "Count pages of file contents in core"
},
{
"name": "find",
"summary": "Search for files in a directory hierarchy"
},
{
"name": "finger",
"summary": "User information lookup program"
},
{
"name": "firejail",
"summary": "Sandbox program that reduces the risk of security breaches"
},
{
"name": "firewall-cmd",
"summary": "Firewalld command line client"
},
{
"name": "fish",
"summary": "The friendly interactive shell"
},
{
"name": "fluxbox",
"summary": "A lightweight window manager for the X Windowing System"
},
{
"name": "fold",
"summary": "Wrap long input lines to a specified width"
},
{
"name": "fortune",
"summary": "Display a pseudorandom message from a database of quotations"
},
{
"name": "free",
"summary": "Display amount of free and used memory in the system"
},
{
"name": "fsarchiver",
"summary": "Filesystem archiver"
},
{
"name": "fsav",
"summary": "Program that scans files for viruses and other malicious code"
},
{
"name": "fsck",
"summary": "Check and repair a Linux file system"
},
{
"name": "ftp",
"summary": "Internet file transfer program"
},
{
"name": "fuser",
"summary": "Identify processes using files or sockets."
},
{
"name": "fusermount",
"summary": "Mount FUSE filesystems"
},
{
"name": "fzf",
"summary": "A command-line fuzzy finder"
},
{
"name": "gcc",
"summary": "GNU project C and C++ compiler"
},
{
"name": "gcloud",
"summary": "Command-line interface is the primary CLI tool to create and manage Google Cloud resources"
},
{
"name": "gem",
"summary": "Frontend to RubyGems, the Ruby package manager"
},
{
"name": "getent",
"summary": "Get entries from Name Service Switch libraries"
},
{
"name": "getfattr",
"summary": "Get extended attributes of filesystem objects"
},
{
"name": "gh",
"summary": "GitHub CLI"
},
{
"name": "git",
"summary": "The stupid content tracker"
},
{
"name": "gnome-terminal",
"summary": "Terminal emulation application."
},
{
"name": "go",
"summary": "Go is a tool for managing Go source code"
},
{
"name": "gofmt",
"summary": "Gofmt formats Go programs."
},
{
"name": "gpart",
"summary": "Guess PC-type hard disk partitions"
},
{
"name": "gpasswd",
"summary": "Administer /etc/group and /etc/gshadow"
},
{
"name": "gpg",
"summary": "OpenPGP encryption and signing tool"
},
{
"name": "gradlew",
"summary": "Build tool with a focus on build automation and support for multi-language development"
},
{
"name": "grep",
"summary": "Print lines matching a pattern"
},
{
"name": "groupadd",
"summary": "Create a new group"
},
{
"name": "grubby",
"summary": "Command line tool for configuring grub, lilo, and elilo"
},
{
"name": "gulp",
"summary": "Display some custom metadata as defined upon task functions."
},
{
"name": "gzip",
"summary": "Compress or expand files"
},
{
"name": "gv",
"summary": "View PostScript and PDF documents using ghostscript"
},
{
"name": "gzip",
"summary": "Compress or expand the size of the named files using Lempel-Ziv coding"
},
{
"name": "hadoop",
"summary": "Is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models"
},
{
"name": "halt",
"summary": "Halt, power-off or reboot the machine"
},
{
"name": "hash",
"summary": "Is the built-in command of bash which is used to maintain a hash table of recently executed"
},
{
"name": "head",
"summary": "Output the first part of files"
},
{
"name": "header",
"summary": "Print information about an image file"
},
{
"name": "helm",
"summary": "The Helm package manager for Kubernetes"
},
{
"name": "heroku",
"summary": "Perform nearly any Heroku-related task right from your terminal"
},
{
"name": "hexdump",
"summary": "ASCII, decimal, hexadecimal, octal dump"
},
{
"name": "hg",
"summary": "Mercurial source code management system"
},
{
"name": "history",
"summary": "Display the command history list with line numbers"
},
{
"name": "host",
"summary": "Simple utility for performing DNS lookups"
},
{
"name": "hostctl",
"summary": "Your dev tool to manage /etc/hosts like a pro"
},
{
"name": "hostname",
"summary": "Show or set the system's host name"
},
{
"name": "hostnamectl",
"summary": "Control the system hostname"
},
{
"name": "htop",
"summary": "Interactive process viewer"
},
{
"name": "htpasswd",
"summary": "Manage user files for basic authentication"
},
{
"name": "http",
"summary": "CLI, cURL-like tool for humans"
},
{
"name": "hugo",
"summary": "Fast and Flexible Static Site Generator built with love by spf13 and friends in Go"
},
{
"name": "hyperfine",
"summary": "Command-line benchmarking tool"
},
{
"name": "id",
"summary": "Print real and effective user and group IDs"
},
{
"name": "ifconfig",
"summary": "Configure a network interface "
},
{
"name": "info",
"summary": "Read Info documents"
},
{
"name": "inotifywait",
"summary": "Wait for changes to files using inotifyt"
},
{
"name": "install",
"summary": "Copy files and set attributes"
},
{
"name": "inxi",
"summary": "Command line system information script for console and IRC"
},
{
"name": "iostat",
"summary": "Report Central Processing Unit (CPU) statistics and input/output statistics for devices and partitions"
},
{
"name": "iperf",
"summary": "Perform network throughput measurement"
},
{
"name": "iperf3",
"summary": "Perform network throughput tests"
},
{
"name": "iptables",
"summary": "Administration tool for IPv4/IPv6 packet filtering and NAT "
},
{
"name": "isoinfo",
"summary": "Utility programs for dumping and verifying iso9660 images"
},
{
"name": "iwconfig",
"summary": "Configure a wireless network interface"
},
{
"name": "javac",
"summary": "Java programming language compiler"
},
{
"name": "jest",
"summary": "Jest is a delightful JavaScript Testing Framework with a focus on simplicity"
},
{
"name": "jmap",
"summary": "Print shared object memory maps or heap memory details for a process, core file, or remote debug server"
},
{
"name": "jobs",
"summary": "Display status of jobs in the current session"
},
{
"name": "journalctl",
"summary": "Query the systemd journal."
},
{
"name": "jq",
"summary": "Command-line JSON processor"
},
{
"name": "jstat",
"summary": "Monitor Java Virtual Machine (JVM) statistics"
},
{
"name": "jupyter",
"summary": "Obtain user-related paths for Jupyter"
},
{
"name": "kata-runtime",
"summary": "Referred to as \"the runtime\", is the Command-Line Interface (CLI) part of the Kata Containers runtime component."
},
{
"name": "keytool",
"summary": "Manage a keystore (database) of cryptographic keys, X.509 certificate chains, and trusted certificates"
},
{
"name": "kill",
"summary": "Terminate or signal processes"
},
{
"name": "killall",
"summary": "Kill processes by name"
},
{
"name": "kmdr",
"summary": "Learn commands from your terminal"
},
{
"name": "kubectl",
"summary": "Run commands against Kubernetes clusters. You can use kubectl to deploy applications, inspect and manage cluster resources, and view logs."
},
{
"name": "last",
"summary": "Show a listing of last logged in users"
},
{
"name": "ld",
"summary": "The GNU linker"
},
{
"name": "less",
"summary": "Opposite of more"
},
{
"name": "link",
"summary": "Make links between files"
},
{
"name": "lipo",
"summary": "Create or operate on universal files"
},
{
"name": "ln",
"summary": "Link files"
},
{
"name": "localectl",
"summary": "Control the system locale and keyboard layout settings"
},
{
"name": "locate",
"summary": "Find files by name"
},
{
"name": "logout",
"summary": "Login, logout - write utmp and wtmp entries"
},
{
"name": "logrotate",
"summary": "Rotate, compress, and mail system logs"
},
{
"name": "lolcat",
"summary": "Rainbow coloring for text"
},
{
"name": "losetup",
"summary": "Set up and control loop devices"
},
{
"name": "losf",
"summary": "List files opened by processes"
},
{
"name": "ls",
"summary": "List directory contents"
},
{
"name": "lsb_release",
"summary": "Print distribution-specific information"
},
{
"name": "lsblk",
"summary": "List block devices"
},
{
"name": "lsmod",
"summary": "Show the status of modules in the Linux Kernel"
},
{
"name": "lsof",
"summary": "List open files"
},
{
"name": "lspci",
"summary": "List all PCI devices."
},
{
"name": "lsusb",
"summary": "List USB devices"
},
{
"name": "lxc",
"summary": "Command line client for LXD"
},
{
"name": "lzma",
"summary": "Compress or decompress .xz and .lzma files"
},
{
"name": "mail",
"summary": "Send and receive Internet mail"
},
{
"name": "mailx",
"summary": "Process messages"
},
{
"name": "make",
"summary": "Build automation tool that builds executable programs and libraries from source code by reading files called Makefiles"
},
{
"name": "makepkg",
"summary": "Package build utility"
},
{
"name": "man",
"summary": "An interface to the on-line reference manuals"
},
{
"name": "md5sum",
"summary": "Compute and check MD5 message digest"
},
{
"name": "mdbook",
"summary": "Utility to create modern online books from Markdown file"
},
{
"name": "minikube",
"summary": "Tool that make it easy to run Kubernetes locally"
},
{
"name": "mkcert",
"summary": "A simple tool for making locally-trusted development certificates"
},
{
"name": "mkdir",
"summary": "Make directories"
},
{
"name": "mkfs",
"summary": "Build a Linux file system"
},
{
"name": "mktemp",
"summary": "Create a temporary file or directory"
},
{
"name": "modinfo",
"summary": "Display information about a kernel module"
},
{
"name": "modprobe",
"summary": "Add and Remove modules from the Linux Kernel"
},
{
"name": "mongo",
"summary": "MongoDB Shell"
},
{
"name": "mongod",
"summary": "MongoDB Server"
},
{
"name": "mongodump",
"summary": "Export MongoDB data from a server to BSON files"
},
{
"name": "more",
"summary": "Display files on a page-by-page basis"
},
{
"name": "mount",
"summary": "Mount a filesystem"
},
{
"name": "mpv",
"summary": "Media player based on MPlayer and mplayer2"
},
{
"name": "mtr",
"summary": "A network diagnostic tool"
},
{
"name": "mv",
"summary": "Move (rename) files"
},
{
"name": "mycli",
"summary": "Command line client for MySQL/MariaDB and Percona"
},
{
"name": "mysql",
"summary": "Command-line tool"
},
{
"name": "mysqldump",
"summary": "Database backup program"
},
{
"name": "nano",
"summary": "Nano's ANOther editor, an enhanced free Pico clone"
},
{
"name": "nc",
"summary": "Concatenate and redirect sockets"
},
{
"name": "ncat",
"summary": "Networking utility which reads and writes data across networks from the command line"
},
{
"name": "ncdu",