penguins-eggs 10.0.42 → 10.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oclif.manifest.json +24 -24
- package/README.md +60 -57
- package/addons/eggs/theme/applications/install-system.desktop +5 -234
- package/conf/tools.yaml +10 -9
- package/dist/classes/families/archlinux.js +2 -7
- package/dist/classes/incubation/installer.js +0 -5
- package/dist/classes/ovary.js +11 -10
- package/dist/classes/pacman.d.ts +0 -5
- package/dist/classes/pacman.js +0 -11
- package/dist/classes/tools.d.ts +1 -5
- package/dist/classes/tools.js +1 -5
- package/dist/commands/calamares.js +10 -10
- package/dist/commands/export/{deb.d.ts → pkg.d.ts} +23 -1
- package/dist/commands/export/pkg.js +141 -0
- package/dist/commands/tools/stat.d.ts +1 -1
- package/dist/commands/tools/stat.js +2 -2
- package/dist/commands/update.d.ts +15 -11
- package/dist/commands/update.js +125 -53
- package/dist/interfaces/i-config-tools.d.ts +2 -5
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +26 -26
- package/package.json +7 -7
- package/scripts/_eggs +8 -8
- package/scripts/eggs.bash +1 -1
- package/dist/commands/export/deb.js +0 -51
package/.oclif.manifest.json
CHANGED
|
@@ -914,26 +914,25 @@
|
|
|
914
914
|
"update.js"
|
|
915
915
|
]
|
|
916
916
|
},
|
|
917
|
-
"export:
|
|
917
|
+
"export:iso": {
|
|
918
918
|
"aliases": [],
|
|
919
919
|
"args": {},
|
|
920
|
-
"description": "export
|
|
920
|
+
"description": "export iso in the destination host",
|
|
921
921
|
"examples": [
|
|
922
|
-
"eggs export
|
|
923
|
-
"eggs export
|
|
924
|
-
"eggs export deb --all"
|
|
922
|
+
"eggs export iso",
|
|
923
|
+
"eggs export iso --clean"
|
|
925
924
|
],
|
|
926
925
|
"flags": {
|
|
927
|
-
"
|
|
928
|
-
"char": "
|
|
929
|
-
"description": "export
|
|
930
|
-
"name": "
|
|
926
|
+
"checksum": {
|
|
927
|
+
"char": "C",
|
|
928
|
+
"description": "export checksums md5 and sha256",
|
|
929
|
+
"name": "checksum",
|
|
931
930
|
"allowNo": false,
|
|
932
931
|
"type": "boolean"
|
|
933
932
|
},
|
|
934
933
|
"clean": {
|
|
935
934
|
"char": "c",
|
|
936
|
-
"description": "
|
|
935
|
+
"description": "delete old ISOs before to copy",
|
|
937
936
|
"name": "clean",
|
|
938
937
|
"allowNo": false,
|
|
939
938
|
"type": "boolean"
|
|
@@ -955,7 +954,7 @@
|
|
|
955
954
|
},
|
|
956
955
|
"hasDynamicHelp": false,
|
|
957
956
|
"hiddenAliases": [],
|
|
958
|
-
"id": "export:
|
|
957
|
+
"id": "export:iso",
|
|
959
958
|
"pluginAlias": "penguins-eggs",
|
|
960
959
|
"pluginName": "penguins-eggs",
|
|
961
960
|
"pluginType": "core",
|
|
@@ -966,28 +965,29 @@
|
|
|
966
965
|
"dist",
|
|
967
966
|
"commands",
|
|
968
967
|
"export",
|
|
969
|
-
"
|
|
968
|
+
"iso.js"
|
|
970
969
|
]
|
|
971
970
|
},
|
|
972
|
-
"export:
|
|
971
|
+
"export:pkg": {
|
|
973
972
|
"aliases": [],
|
|
974
973
|
"args": {},
|
|
975
|
-
"description": "export iso
|
|
974
|
+
"description": "export pkg/iso to the destination host",
|
|
976
975
|
"examples": [
|
|
977
|
-
"eggs export
|
|
978
|
-
"eggs export
|
|
976
|
+
"eggs export pkg",
|
|
977
|
+
"eggs export pkg --clean",
|
|
978
|
+
"eggs export pkg --all"
|
|
979
979
|
],
|
|
980
980
|
"flags": {
|
|
981
|
-
"
|
|
982
|
-
"char": "
|
|
983
|
-
"description": "export
|
|
984
|
-
"name": "
|
|
981
|
+
"all": {
|
|
982
|
+
"char": "a",
|
|
983
|
+
"description": "export all archs",
|
|
984
|
+
"name": "all",
|
|
985
985
|
"allowNo": false,
|
|
986
986
|
"type": "boolean"
|
|
987
987
|
},
|
|
988
988
|
"clean": {
|
|
989
989
|
"char": "c",
|
|
990
|
-
"description": "
|
|
990
|
+
"description": "remove old .deb before to copy",
|
|
991
991
|
"name": "clean",
|
|
992
992
|
"allowNo": false,
|
|
993
993
|
"type": "boolean"
|
|
@@ -1009,7 +1009,7 @@
|
|
|
1009
1009
|
},
|
|
1010
1010
|
"hasDynamicHelp": false,
|
|
1011
1011
|
"hiddenAliases": [],
|
|
1012
|
-
"id": "export:
|
|
1012
|
+
"id": "export:pkg",
|
|
1013
1013
|
"pluginAlias": "penguins-eggs",
|
|
1014
1014
|
"pluginName": "penguins-eggs",
|
|
1015
1015
|
"pluginType": "core",
|
|
@@ -1020,7 +1020,7 @@
|
|
|
1020
1020
|
"dist",
|
|
1021
1021
|
"commands",
|
|
1022
1022
|
"export",
|
|
1023
|
-
"
|
|
1023
|
+
"pkg.js"
|
|
1024
1024
|
]
|
|
1025
1025
|
},
|
|
1026
1026
|
"tools:clean": {
|
|
@@ -1498,5 +1498,5 @@
|
|
|
1498
1498
|
]
|
|
1499
1499
|
}
|
|
1500
1500
|
},
|
|
1501
|
-
"version": "10.0.
|
|
1501
|
+
"version": "10.0.43"
|
|
1502
1502
|
}
|
package/README.md
CHANGED
|
@@ -8,8 +8,9 @@ penguins-eggs
|
|
|
8
8
|
[](https://penguins-eggs.net)
|
|
9
9
|
[](https://penguins-eggs.net/docs/Tutorial/eggs-users-guide)
|
|
10
10
|
[](https://npmjs.org/package/penguins-eggs)
|
|
11
|
-
[
|
|
12
|
+
](https://sourceforge.net/projects/penguins-eggs/files/Packages)
|
|
13
|
+
|
|
13
14
|
[](https://sourceforge.net/projects/penguins-eggs/files/ISOS)
|
|
14
15
|
|
|
15
16
|
# Index
|
|
@@ -59,8 +60,10 @@ Before to install `penguins-eggs-10.x` add the repos from `nodesource`, follow t
|
|
|
59
60
|
#### Debian 9 stretch, Ubuntu 18.04 bionic
|
|
60
61
|
Use the package `penguins-eggs-10.x.x-bionic-x` - compilated against node16 - and follow this [indications](https://github.com/pieroproietti/penguins-eggs/issues/368#issuecomment-2169961955) to get `nodejs>16` available.
|
|
61
62
|
|
|
62
|
-
### Fedora
|
|
63
|
-
There is no installation package for
|
|
63
|
+
### AlpineLinux, Fedora and openSuSE
|
|
64
|
+
There is no installation package for this distros, but is simple to install penguins-eggs from sources as described [here](https://github.com/pieroproietti/penguins-eggs/tree/master/PREREQUISITES#prerequisites).
|
|
65
|
+
|
|
66
|
+
Volunteer to package penguins-eggs on these three distributions? Contact me.
|
|
64
67
|
|
|
65
68
|
# Introduction
|
|
66
69
|
|
|
@@ -80,7 +83,7 @@ Written primarily in TypeScript, Penguins’ Eggs is designed to be compatible w
|
|
|
80
83
|
|
|
81
84
|
The tool currently supports Debian, Devuan, Ubuntu, Arch, Manjaro, and their derivatives, across multiple architectures including amd64, i386, and arm64.
|
|
82
85
|
|
|
83
|
-
From the release of version 9.6.x, Penguins’ Eggs is available as a [Debian package](https://sourceforge.net/projects/penguins-eggs/files/DEBS/), then was extended to Arch Linux creating the relative [PKGBUILD](https://aur.archlinux.org/packages/penguins-eggs).
|
|
86
|
+
From the release of version 9.6.x, Penguins’ Eggs is available as a [Debian package](https://sourceforge.net/projects/penguins-eggs/files/DEBS/), then was extended to Arch Linux creating the relative [PKGBUILD](https://aur.archlinux.org/packages/penguins-eggs), nowday eggs can remaster Alpine Linux, Fedora, openSuSE but this distros not have a package yet.
|
|
84
87
|
|
|
85
88
|
So, catering to a wide range of systems including PCs, older machines, and single-board ARM systems like the Raspberry Pi, across amd64, i386, and arm64 architectures.
|
|
86
89
|
|
|
@@ -448,8 +451,8 @@ sudo eggs produce --max
|
|
|
448
451
|
* [`eggs config`](#eggs-config)
|
|
449
452
|
* [`eggs cuckoo`](#eggs-cuckoo)
|
|
450
453
|
* [`eggs dad`](#eggs-dad)
|
|
451
|
-
* [`eggs export deb`](#eggs-export-deb)
|
|
452
454
|
* [`eggs export iso`](#eggs-export-iso)
|
|
455
|
+
* [`eggs export pkg`](#eggs-export-pkg)
|
|
453
456
|
* [`eggs help [COMMAND]`](#eggs-help-command)
|
|
454
457
|
* [`eggs install`](#eggs-install)
|
|
455
458
|
* [`eggs kill`](#eggs-kill)
|
|
@@ -491,7 +494,7 @@ EXAMPLES
|
|
|
491
494
|
$ eggs adapt
|
|
492
495
|
```
|
|
493
496
|
|
|
494
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
497
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/adapt.ts)_
|
|
495
498
|
|
|
496
499
|
## `eggs analyze`
|
|
497
500
|
|
|
@@ -512,7 +515,7 @@ EXAMPLES
|
|
|
512
515
|
sudo eggs analyze
|
|
513
516
|
```
|
|
514
517
|
|
|
515
|
-
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
518
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/analyze.ts)_
|
|
516
519
|
|
|
517
520
|
## `eggs autocomplete [SHELL]`
|
|
518
521
|
|
|
@@ -543,7 +546,7 @@ EXAMPLES
|
|
|
543
546
|
$ eggs autocomplete --refresh-cache
|
|
544
547
|
```
|
|
545
548
|
|
|
546
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.
|
|
549
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.6/src/commands/autocomplete/index.ts)_
|
|
547
550
|
|
|
548
551
|
## `eggs calamares`
|
|
549
552
|
|
|
@@ -576,7 +579,7 @@ EXAMPLES
|
|
|
576
579
|
sudo eggs calamares --remove
|
|
577
580
|
```
|
|
578
581
|
|
|
579
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
582
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/calamares.ts)_
|
|
580
583
|
|
|
581
584
|
## `eggs config`
|
|
582
585
|
|
|
@@ -603,7 +606,7 @@ EXAMPLES
|
|
|
603
606
|
sudo eggs config --clean --nointeractive
|
|
604
607
|
```
|
|
605
608
|
|
|
606
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
609
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/config.ts)_
|
|
607
610
|
|
|
608
611
|
## `eggs cuckoo`
|
|
609
612
|
|
|
@@ -623,7 +626,7 @@ EXAMPLES
|
|
|
623
626
|
sudo eggs cuckoo
|
|
624
627
|
```
|
|
625
628
|
|
|
626
|
-
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
629
|
+
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/cuckoo.ts)_
|
|
627
630
|
|
|
628
631
|
## `eggs dad`
|
|
629
632
|
|
|
@@ -651,59 +654,59 @@ EXAMPLES
|
|
|
651
654
|
sudo dad --default
|
|
652
655
|
```
|
|
653
656
|
|
|
654
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
657
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/dad.ts)_
|
|
655
658
|
|
|
656
|
-
## `eggs export
|
|
659
|
+
## `eggs export iso`
|
|
657
660
|
|
|
658
|
-
export
|
|
661
|
+
export iso in the destination host
|
|
659
662
|
|
|
660
663
|
```
|
|
661
664
|
USAGE
|
|
662
|
-
$ eggs export
|
|
665
|
+
$ eggs export iso [-C] [-c] [-h] [-v]
|
|
663
666
|
|
|
664
667
|
FLAGS
|
|
665
|
-
-
|
|
666
|
-
-c, --clean
|
|
667
|
-
-h, --help
|
|
668
|
-
-v, --verbose
|
|
668
|
+
-C, --checksum export checksums md5 and sha256
|
|
669
|
+
-c, --clean delete old ISOs before to copy
|
|
670
|
+
-h, --help Show CLI help.
|
|
671
|
+
-v, --verbose verbose
|
|
669
672
|
|
|
670
673
|
DESCRIPTION
|
|
671
|
-
export
|
|
674
|
+
export iso in the destination host
|
|
672
675
|
|
|
673
676
|
EXAMPLES
|
|
674
|
-
$ eggs export
|
|
675
|
-
|
|
676
|
-
$ eggs export deb --clean
|
|
677
|
+
$ eggs export iso
|
|
677
678
|
|
|
678
|
-
$ eggs export
|
|
679
|
+
$ eggs export iso --clean
|
|
679
680
|
```
|
|
680
681
|
|
|
681
|
-
_See code: [src/commands/export/
|
|
682
|
+
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/export/iso.ts)_
|
|
682
683
|
|
|
683
|
-
## `eggs export
|
|
684
|
+
## `eggs export pkg`
|
|
684
685
|
|
|
685
|
-
export iso
|
|
686
|
+
export pkg/iso to the destination host
|
|
686
687
|
|
|
687
688
|
```
|
|
688
689
|
USAGE
|
|
689
|
-
$ eggs export
|
|
690
|
+
$ eggs export pkg [-a] [-c] [-h] [-v]
|
|
690
691
|
|
|
691
692
|
FLAGS
|
|
692
|
-
-
|
|
693
|
-
-c, --clean
|
|
694
|
-
-h, --help
|
|
695
|
-
-v, --verbose
|
|
693
|
+
-a, --all export all archs
|
|
694
|
+
-c, --clean remove old .deb before to copy
|
|
695
|
+
-h, --help Show CLI help.
|
|
696
|
+
-v, --verbose verbose
|
|
696
697
|
|
|
697
698
|
DESCRIPTION
|
|
698
|
-
export iso
|
|
699
|
+
export pkg/iso to the destination host
|
|
699
700
|
|
|
700
701
|
EXAMPLES
|
|
701
|
-
$ eggs export
|
|
702
|
+
$ eggs export pkg
|
|
702
703
|
|
|
703
|
-
$ eggs export
|
|
704
|
+
$ eggs export pkg --clean
|
|
705
|
+
|
|
706
|
+
$ eggs export pkg --all
|
|
704
707
|
```
|
|
705
708
|
|
|
706
|
-
_See code: [src/commands/export/
|
|
709
|
+
_See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/export/pkg.ts)_
|
|
707
710
|
|
|
708
711
|
## `eggs help [COMMAND]`
|
|
709
712
|
|
|
@@ -723,7 +726,7 @@ DESCRIPTION
|
|
|
723
726
|
Display help for eggs.
|
|
724
727
|
```
|
|
725
728
|
|
|
726
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.
|
|
729
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.15/src/commands/help.ts)_
|
|
727
730
|
|
|
728
731
|
## `eggs install`
|
|
729
732
|
|
|
@@ -764,7 +767,7 @@ EXAMPLES
|
|
|
764
767
|
sudo eggs install --chroot
|
|
765
768
|
```
|
|
766
769
|
|
|
767
|
-
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
770
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/install.ts)_
|
|
768
771
|
|
|
769
772
|
## `eggs kill`
|
|
770
773
|
|
|
@@ -787,7 +790,7 @@ EXAMPLES
|
|
|
787
790
|
sudo eggs kill
|
|
788
791
|
```
|
|
789
792
|
|
|
790
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
793
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/kill.ts)_
|
|
791
794
|
|
|
792
795
|
## `eggs krill`
|
|
793
796
|
|
|
@@ -847,7 +850,7 @@ EXAMPLES
|
|
|
847
850
|
$ eggs auto
|
|
848
851
|
```
|
|
849
852
|
|
|
850
|
-
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
853
|
+
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/love.ts)_
|
|
851
854
|
|
|
852
855
|
## `eggs mom`
|
|
853
856
|
|
|
@@ -867,7 +870,7 @@ EXAMPLES
|
|
|
867
870
|
$ eggs mom
|
|
868
871
|
```
|
|
869
872
|
|
|
870
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
873
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/mom.ts)_
|
|
871
874
|
|
|
872
875
|
## `eggs produce`
|
|
873
876
|
|
|
@@ -924,7 +927,7 @@ EXAMPLES
|
|
|
924
927
|
sudo eggs produce --excludes home # exclude ~/*
|
|
925
928
|
```
|
|
926
929
|
|
|
927
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
930
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/produce.ts)_
|
|
928
931
|
|
|
929
932
|
## `eggs status`
|
|
930
933
|
|
|
@@ -945,7 +948,7 @@ EXAMPLES
|
|
|
945
948
|
$ eggs status
|
|
946
949
|
```
|
|
947
950
|
|
|
948
|
-
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
951
|
+
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/status.ts)_
|
|
949
952
|
|
|
950
953
|
## `eggs syncfrom`
|
|
951
954
|
|
|
@@ -971,7 +974,7 @@ EXAMPLES
|
|
|
971
974
|
sudo eggs syncfrom --file /path/to/luks-volume
|
|
972
975
|
```
|
|
973
976
|
|
|
974
|
-
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
977
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/syncfrom.ts)_
|
|
975
978
|
|
|
976
979
|
## `eggs syncto`
|
|
977
980
|
|
|
@@ -998,7 +1001,7 @@ EXAMPLES
|
|
|
998
1001
|
sudo eggs syncto --excludes
|
|
999
1002
|
```
|
|
1000
1003
|
|
|
1001
|
-
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1004
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/syncto.ts)_
|
|
1002
1005
|
|
|
1003
1006
|
## `eggs tools clean`
|
|
1004
1007
|
|
|
@@ -1020,7 +1023,7 @@ EXAMPLES
|
|
|
1020
1023
|
sudo eggs tools clean
|
|
1021
1024
|
```
|
|
1022
1025
|
|
|
1023
|
-
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1026
|
+
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/tools/clean.ts)_
|
|
1024
1027
|
|
|
1025
1028
|
## `eggs tools ppa`
|
|
1026
1029
|
|
|
@@ -1046,7 +1049,7 @@ EXAMPLES
|
|
|
1046
1049
|
sudo eggs tools ppa --remove
|
|
1047
1050
|
```
|
|
1048
1051
|
|
|
1049
|
-
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1052
|
+
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/tools/ppa.ts)_
|
|
1050
1053
|
|
|
1051
1054
|
## `eggs tools skel`
|
|
1052
1055
|
|
|
@@ -1070,7 +1073,7 @@ EXAMPLES
|
|
|
1070
1073
|
sudo eggs tools skel --user user-to-be-copied
|
|
1071
1074
|
```
|
|
1072
1075
|
|
|
1073
|
-
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1076
|
+
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/tools/skel.ts)_
|
|
1074
1077
|
|
|
1075
1078
|
## `eggs tools stat`
|
|
1076
1079
|
|
|
@@ -1096,7 +1099,7 @@ EXAMPLES
|
|
|
1096
1099
|
$ eggs tools stat --year
|
|
1097
1100
|
```
|
|
1098
1101
|
|
|
1099
|
-
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1102
|
+
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/tools/stat.ts)_
|
|
1100
1103
|
|
|
1101
1104
|
## `eggs tools yolk`
|
|
1102
1105
|
|
|
@@ -1117,7 +1120,7 @@ EXAMPLES
|
|
|
1117
1120
|
sudo eggs tools yolk
|
|
1118
1121
|
```
|
|
1119
1122
|
|
|
1120
|
-
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1123
|
+
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/tools/yolk.ts)_
|
|
1121
1124
|
|
|
1122
1125
|
## `eggs update`
|
|
1123
1126
|
|
|
@@ -1138,7 +1141,7 @@ EXAMPLES
|
|
|
1138
1141
|
$ eggs update
|
|
1139
1142
|
```
|
|
1140
1143
|
|
|
1141
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1144
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/update.ts)_
|
|
1142
1145
|
|
|
1143
1146
|
## `eggs version`
|
|
1144
1147
|
|
|
@@ -1158,7 +1161,7 @@ FLAG DESCRIPTIONS
|
|
|
1158
1161
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
1159
1162
|
```
|
|
1160
1163
|
|
|
1161
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.
|
|
1164
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.15/src/commands/version.ts)_
|
|
1162
1165
|
|
|
1163
1166
|
## `eggs wardrobe get [REPO]`
|
|
1164
1167
|
|
|
@@ -1184,7 +1187,7 @@ EXAMPLES
|
|
|
1184
1187
|
$ eggs wardrobe get your-wardrobe
|
|
1185
1188
|
```
|
|
1186
1189
|
|
|
1187
|
-
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1190
|
+
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/wardrobe/get.ts)_
|
|
1188
1191
|
|
|
1189
1192
|
## `eggs wardrobe list [REPO]`
|
|
1190
1193
|
|
|
@@ -1213,7 +1216,7 @@ EXAMPLES
|
|
|
1213
1216
|
$ eggs wardrobe list --distro arch
|
|
1214
1217
|
```
|
|
1215
1218
|
|
|
1216
|
-
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1219
|
+
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/wardrobe/list.ts)_
|
|
1217
1220
|
|
|
1218
1221
|
## `eggs wardrobe show [REPO]`
|
|
1219
1222
|
|
|
@@ -1243,7 +1246,7 @@ EXAMPLES
|
|
|
1243
1246
|
$ eggs wardrobe show accessories/
|
|
1244
1247
|
```
|
|
1245
1248
|
|
|
1246
|
-
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1249
|
+
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/wardrobe/show.ts)_
|
|
1247
1250
|
|
|
1248
1251
|
## `eggs wardrobe wear [REPO]`
|
|
1249
1252
|
|
|
@@ -1274,7 +1277,7 @@ EXAMPLES
|
|
|
1274
1277
|
sudo eggs wardrobe wear wagtail/waydroid
|
|
1275
1278
|
```
|
|
1276
1279
|
|
|
1277
|
-
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1280
|
+
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.43/src/commands/wardrobe/wear.ts)_
|
|
1278
1281
|
<!-- commandsstop -->
|
|
1279
1282
|
|
|
1280
1283
|
# penGUI
|