mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-08-01 07:09:26 +00:00
Moved hub into the git plugin.
This commit is contained in:
9
plugins/dpkg/functions/apt-copy
Normal file
9
plugins/dpkg/functions/apt-copy
Normal file
@ -0,0 +1,9 @@
|
||||
# Create a simple script that can be used to 'duplicate' a system.
|
||||
print '#!/bin/sh'"\n" > apt-copy.sh
|
||||
|
||||
list=$(perl -m'AptPkg::Cache' -e '$c=AptPkg::Cache->new; for (keys %$c){ push @a, $_ if $c->{$_}->{'CurrentState'} eq 'Installed';} print "$_ " for sort @a;')
|
||||
|
||||
print 'aptitude install '"$list\n" >> apt-copy.sh
|
||||
|
||||
chmod +x apt-copy.sh
|
||||
|
10
plugins/dpkg/functions/dbb-build
Normal file
10
plugins/dpkg/functions/dbb-build
Normal file
@ -0,0 +1,10 @@
|
||||
# Kernel-package building shortcut.
|
||||
MAKEFLAGS='' # Temporarily unset MAKEFLAGS ( '-j3' will fail ).
|
||||
appendage='-custom' # This shows up in $ (uname -r ).
|
||||
revision=$(date +"%Y%m%d") # This shows up in the .deb file name.
|
||||
|
||||
make-kpkg clean
|
||||
|
||||
time fakeroot make-kpkg --append-to-version "$appendage" --revision \
|
||||
"$revision" kernel_image kernel_headers
|
||||
|
Reference in New Issue
Block a user