penguins-eggs 10.0.42 → 10.0.44
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 +63 -64
- package/addons/eggs/theme/applications/install-system.desktop +5 -234
- package/conf/derivatives.yaml +8 -5
- package/conf/tools.yaml +10 -9
- package/dist/classes/distro.js +1 -1
- 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/config.js +1 -4
- package/dist/commands/export/{deb.d.ts → pkg.d.ts} +27 -1
- package/dist/commands/export/pkg.js +178 -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 +133 -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.44"
|
|
1502
1502
|
}
|
package/README.md
CHANGED
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
[](https://vshymanskyy.github.io/StandWithUkraine)
|
|
2
|
-
|
|
3
1
|
penguins-eggs
|
|
4
2
|
=============
|
|
5
3
|
|
|
6
|
-
|
|
4
|
+
## Penguin's eggs are generated and new birds are ready to fly...
|
|
7
5
|
[](https://github.com/pieroproietti/penguins-eggs)
|
|
8
|
-
[](https://sourceforge.net/projects/penguins-eggs/files/ISOS)
|
|
6
|
+
[](https://penguins-eggs.net)
|
|
7
|
+
[](https://t.me/penguins_eggs)
|
|
8
|
+
[](https://sourceforge.net/projects/penguins-eggs/files/ISOS)
|
|
9
|
+
[](https://sourceforge.net/projects/penguins-eggs/files/Packages)
|
|
10
|
+
[](https://npmjs.org/package/penguins-eggs)
|
|
14
11
|
|
|
15
12
|
# Index
|
|
16
13
|
<!-- toc -->
|
|
@@ -59,8 +56,10 @@ Before to install `penguins-eggs-10.x` add the repos from `nodesource`, follow t
|
|
|
59
56
|
#### Debian 9 stretch, Ubuntu 18.04 bionic
|
|
60
57
|
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
58
|
|
|
62
|
-
### Fedora
|
|
63
|
-
There is no installation package for
|
|
59
|
+
### AlpineLinux, Fedora and openSuSE
|
|
60
|
+
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).
|
|
61
|
+
|
|
62
|
+
Volunteer to package penguins-eggs on these three distributions? Contact me.
|
|
64
63
|
|
|
65
64
|
# Introduction
|
|
66
65
|
|
|
@@ -80,7 +79,7 @@ Written primarily in TypeScript, Penguins’ Eggs is designed to be compatible w
|
|
|
80
79
|
|
|
81
80
|
The tool currently supports Debian, Devuan, Ubuntu, Arch, Manjaro, and their derivatives, across multiple architectures including amd64, i386, and arm64.
|
|
82
81
|
|
|
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).
|
|
82
|
+
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
83
|
|
|
85
84
|
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
85
|
|
|
@@ -448,8 +447,8 @@ sudo eggs produce --max
|
|
|
448
447
|
* [`eggs config`](#eggs-config)
|
|
449
448
|
* [`eggs cuckoo`](#eggs-cuckoo)
|
|
450
449
|
* [`eggs dad`](#eggs-dad)
|
|
451
|
-
* [`eggs export deb`](#eggs-export-deb)
|
|
452
450
|
* [`eggs export iso`](#eggs-export-iso)
|
|
451
|
+
* [`eggs export pkg`](#eggs-export-pkg)
|
|
453
452
|
* [`eggs help [COMMAND]`](#eggs-help-command)
|
|
454
453
|
* [`eggs install`](#eggs-install)
|
|
455
454
|
* [`eggs kill`](#eggs-kill)
|
|
@@ -491,7 +490,7 @@ EXAMPLES
|
|
|
491
490
|
$ eggs adapt
|
|
492
491
|
```
|
|
493
492
|
|
|
494
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
493
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/adapt.ts)_
|
|
495
494
|
|
|
496
495
|
## `eggs analyze`
|
|
497
496
|
|
|
@@ -512,7 +511,7 @@ EXAMPLES
|
|
|
512
511
|
sudo eggs analyze
|
|
513
512
|
```
|
|
514
513
|
|
|
515
|
-
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
514
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/analyze.ts)_
|
|
516
515
|
|
|
517
516
|
## `eggs autocomplete [SHELL]`
|
|
518
517
|
|
|
@@ -543,7 +542,7 @@ EXAMPLES
|
|
|
543
542
|
$ eggs autocomplete --refresh-cache
|
|
544
543
|
```
|
|
545
544
|
|
|
546
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.
|
|
545
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.6/src/commands/autocomplete/index.ts)_
|
|
547
546
|
|
|
548
547
|
## `eggs calamares`
|
|
549
548
|
|
|
@@ -576,7 +575,7 @@ EXAMPLES
|
|
|
576
575
|
sudo eggs calamares --remove
|
|
577
576
|
```
|
|
578
577
|
|
|
579
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
578
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/calamares.ts)_
|
|
580
579
|
|
|
581
580
|
## `eggs config`
|
|
582
581
|
|
|
@@ -603,7 +602,7 @@ EXAMPLES
|
|
|
603
602
|
sudo eggs config --clean --nointeractive
|
|
604
603
|
```
|
|
605
604
|
|
|
606
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
605
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/config.ts)_
|
|
607
606
|
|
|
608
607
|
## `eggs cuckoo`
|
|
609
608
|
|
|
@@ -623,7 +622,7 @@ EXAMPLES
|
|
|
623
622
|
sudo eggs cuckoo
|
|
624
623
|
```
|
|
625
624
|
|
|
626
|
-
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
625
|
+
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/cuckoo.ts)_
|
|
627
626
|
|
|
628
627
|
## `eggs dad`
|
|
629
628
|
|
|
@@ -651,59 +650,59 @@ EXAMPLES
|
|
|
651
650
|
sudo dad --default
|
|
652
651
|
```
|
|
653
652
|
|
|
654
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
653
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/dad.ts)_
|
|
655
654
|
|
|
656
|
-
## `eggs export
|
|
655
|
+
## `eggs export iso`
|
|
657
656
|
|
|
658
|
-
export
|
|
657
|
+
export iso in the destination host
|
|
659
658
|
|
|
660
659
|
```
|
|
661
660
|
USAGE
|
|
662
|
-
$ eggs export
|
|
661
|
+
$ eggs export iso [-C] [-c] [-h] [-v]
|
|
663
662
|
|
|
664
663
|
FLAGS
|
|
665
|
-
-
|
|
666
|
-
-c, --clean
|
|
667
|
-
-h, --help
|
|
668
|
-
-v, --verbose
|
|
664
|
+
-C, --checksum export checksums md5 and sha256
|
|
665
|
+
-c, --clean delete old ISOs before to copy
|
|
666
|
+
-h, --help Show CLI help.
|
|
667
|
+
-v, --verbose verbose
|
|
669
668
|
|
|
670
669
|
DESCRIPTION
|
|
671
|
-
export
|
|
670
|
+
export iso in the destination host
|
|
672
671
|
|
|
673
672
|
EXAMPLES
|
|
674
|
-
$ eggs export
|
|
675
|
-
|
|
676
|
-
$ eggs export deb --clean
|
|
673
|
+
$ eggs export iso
|
|
677
674
|
|
|
678
|
-
$ eggs export
|
|
675
|
+
$ eggs export iso --clean
|
|
679
676
|
```
|
|
680
677
|
|
|
681
|
-
_See code: [src/commands/export/
|
|
678
|
+
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/export/iso.ts)_
|
|
682
679
|
|
|
683
|
-
## `eggs export
|
|
680
|
+
## `eggs export pkg`
|
|
684
681
|
|
|
685
|
-
export iso
|
|
682
|
+
export pkg/iso to the destination host
|
|
686
683
|
|
|
687
684
|
```
|
|
688
685
|
USAGE
|
|
689
|
-
$ eggs export
|
|
686
|
+
$ eggs export pkg [-a] [-c] [-h] [-v]
|
|
690
687
|
|
|
691
688
|
FLAGS
|
|
692
|
-
-
|
|
693
|
-
-c, --clean
|
|
694
|
-
-h, --help
|
|
695
|
-
-v, --verbose
|
|
689
|
+
-a, --all export all archs
|
|
690
|
+
-c, --clean remove old .deb before to copy
|
|
691
|
+
-h, --help Show CLI help.
|
|
692
|
+
-v, --verbose verbose
|
|
696
693
|
|
|
697
694
|
DESCRIPTION
|
|
698
|
-
export iso
|
|
695
|
+
export pkg/iso to the destination host
|
|
699
696
|
|
|
700
697
|
EXAMPLES
|
|
701
|
-
$ eggs export
|
|
698
|
+
$ eggs export pkg
|
|
702
699
|
|
|
703
|
-
$ eggs export
|
|
700
|
+
$ eggs export pkg --clean
|
|
701
|
+
|
|
702
|
+
$ eggs export pkg --all
|
|
704
703
|
```
|
|
705
704
|
|
|
706
|
-
_See code: [src/commands/export/
|
|
705
|
+
_See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/export/pkg.ts)_
|
|
707
706
|
|
|
708
707
|
## `eggs help [COMMAND]`
|
|
709
708
|
|
|
@@ -723,7 +722,7 @@ DESCRIPTION
|
|
|
723
722
|
Display help for eggs.
|
|
724
723
|
```
|
|
725
724
|
|
|
726
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.
|
|
725
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.15/src/commands/help.ts)_
|
|
727
726
|
|
|
728
727
|
## `eggs install`
|
|
729
728
|
|
|
@@ -764,7 +763,7 @@ EXAMPLES
|
|
|
764
763
|
sudo eggs install --chroot
|
|
765
764
|
```
|
|
766
765
|
|
|
767
|
-
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
766
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/install.ts)_
|
|
768
767
|
|
|
769
768
|
## `eggs kill`
|
|
770
769
|
|
|
@@ -787,7 +786,7 @@ EXAMPLES
|
|
|
787
786
|
sudo eggs kill
|
|
788
787
|
```
|
|
789
788
|
|
|
790
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
789
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/kill.ts)_
|
|
791
790
|
|
|
792
791
|
## `eggs krill`
|
|
793
792
|
|
|
@@ -847,7 +846,7 @@ EXAMPLES
|
|
|
847
846
|
$ eggs auto
|
|
848
847
|
```
|
|
849
848
|
|
|
850
|
-
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
849
|
+
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/love.ts)_
|
|
851
850
|
|
|
852
851
|
## `eggs mom`
|
|
853
852
|
|
|
@@ -867,7 +866,7 @@ EXAMPLES
|
|
|
867
866
|
$ eggs mom
|
|
868
867
|
```
|
|
869
868
|
|
|
870
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
869
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/mom.ts)_
|
|
871
870
|
|
|
872
871
|
## `eggs produce`
|
|
873
872
|
|
|
@@ -924,7 +923,7 @@ EXAMPLES
|
|
|
924
923
|
sudo eggs produce --excludes home # exclude ~/*
|
|
925
924
|
```
|
|
926
925
|
|
|
927
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
926
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/produce.ts)_
|
|
928
927
|
|
|
929
928
|
## `eggs status`
|
|
930
929
|
|
|
@@ -945,7 +944,7 @@ EXAMPLES
|
|
|
945
944
|
$ eggs status
|
|
946
945
|
```
|
|
947
946
|
|
|
948
|
-
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
947
|
+
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/status.ts)_
|
|
949
948
|
|
|
950
949
|
## `eggs syncfrom`
|
|
951
950
|
|
|
@@ -971,7 +970,7 @@ EXAMPLES
|
|
|
971
970
|
sudo eggs syncfrom --file /path/to/luks-volume
|
|
972
971
|
```
|
|
973
972
|
|
|
974
|
-
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
973
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/syncfrom.ts)_
|
|
975
974
|
|
|
976
975
|
## `eggs syncto`
|
|
977
976
|
|
|
@@ -998,7 +997,7 @@ EXAMPLES
|
|
|
998
997
|
sudo eggs syncto --excludes
|
|
999
998
|
```
|
|
1000
999
|
|
|
1001
|
-
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1000
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/syncto.ts)_
|
|
1002
1001
|
|
|
1003
1002
|
## `eggs tools clean`
|
|
1004
1003
|
|
|
@@ -1020,7 +1019,7 @@ EXAMPLES
|
|
|
1020
1019
|
sudo eggs tools clean
|
|
1021
1020
|
```
|
|
1022
1021
|
|
|
1023
|
-
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1022
|
+
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/tools/clean.ts)_
|
|
1024
1023
|
|
|
1025
1024
|
## `eggs tools ppa`
|
|
1026
1025
|
|
|
@@ -1046,7 +1045,7 @@ EXAMPLES
|
|
|
1046
1045
|
sudo eggs tools ppa --remove
|
|
1047
1046
|
```
|
|
1048
1047
|
|
|
1049
|
-
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1048
|
+
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/tools/ppa.ts)_
|
|
1050
1049
|
|
|
1051
1050
|
## `eggs tools skel`
|
|
1052
1051
|
|
|
@@ -1070,7 +1069,7 @@ EXAMPLES
|
|
|
1070
1069
|
sudo eggs tools skel --user user-to-be-copied
|
|
1071
1070
|
```
|
|
1072
1071
|
|
|
1073
|
-
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1072
|
+
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/tools/skel.ts)_
|
|
1074
1073
|
|
|
1075
1074
|
## `eggs tools stat`
|
|
1076
1075
|
|
|
@@ -1096,7 +1095,7 @@ EXAMPLES
|
|
|
1096
1095
|
$ eggs tools stat --year
|
|
1097
1096
|
```
|
|
1098
1097
|
|
|
1099
|
-
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1098
|
+
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/tools/stat.ts)_
|
|
1100
1099
|
|
|
1101
1100
|
## `eggs tools yolk`
|
|
1102
1101
|
|
|
@@ -1117,7 +1116,7 @@ EXAMPLES
|
|
|
1117
1116
|
sudo eggs tools yolk
|
|
1118
1117
|
```
|
|
1119
1118
|
|
|
1120
|
-
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1119
|
+
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/tools/yolk.ts)_
|
|
1121
1120
|
|
|
1122
1121
|
## `eggs update`
|
|
1123
1122
|
|
|
@@ -1138,7 +1137,7 @@ EXAMPLES
|
|
|
1138
1137
|
$ eggs update
|
|
1139
1138
|
```
|
|
1140
1139
|
|
|
1141
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1140
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/update.ts)_
|
|
1142
1141
|
|
|
1143
1142
|
## `eggs version`
|
|
1144
1143
|
|
|
@@ -1158,7 +1157,7 @@ FLAG DESCRIPTIONS
|
|
|
1158
1157
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
1159
1158
|
```
|
|
1160
1159
|
|
|
1161
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.
|
|
1160
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.15/src/commands/version.ts)_
|
|
1162
1161
|
|
|
1163
1162
|
## `eggs wardrobe get [REPO]`
|
|
1164
1163
|
|
|
@@ -1184,7 +1183,7 @@ EXAMPLES
|
|
|
1184
1183
|
$ eggs wardrobe get your-wardrobe
|
|
1185
1184
|
```
|
|
1186
1185
|
|
|
1187
|
-
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1186
|
+
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/wardrobe/get.ts)_
|
|
1188
1187
|
|
|
1189
1188
|
## `eggs wardrobe list [REPO]`
|
|
1190
1189
|
|
|
@@ -1213,7 +1212,7 @@ EXAMPLES
|
|
|
1213
1212
|
$ eggs wardrobe list --distro arch
|
|
1214
1213
|
```
|
|
1215
1214
|
|
|
1216
|
-
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1215
|
+
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/wardrobe/list.ts)_
|
|
1217
1216
|
|
|
1218
1217
|
## `eggs wardrobe show [REPO]`
|
|
1219
1218
|
|
|
@@ -1243,7 +1242,7 @@ EXAMPLES
|
|
|
1243
1242
|
$ eggs wardrobe show accessories/
|
|
1244
1243
|
```
|
|
1245
1244
|
|
|
1246
|
-
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1245
|
+
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/wardrobe/show.ts)_
|
|
1247
1246
|
|
|
1248
1247
|
## `eggs wardrobe wear [REPO]`
|
|
1249
1248
|
|
|
@@ -1274,7 +1273,7 @@ EXAMPLES
|
|
|
1274
1273
|
sudo eggs wardrobe wear wagtail/waydroid
|
|
1275
1274
|
```
|
|
1276
1275
|
|
|
1277
|
-
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1276
|
+
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.44/src/commands/wardrobe/wear.ts)_
|
|
1278
1277
|
<!-- commandsstop -->
|
|
1279
1278
|
|
|
1280
1279
|
# penGUI
|