exclude menu resolution in savechanges
parent
0af58652d2
commit
371657ce94
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
TMP=/tmp/changes$$
|
TMP=/tmp/changes$$
|
||||||
EXCLUDE="^\$|/\$|[.]wh[.][.]wh[.]orph/|^[.]wh[.][.]wh[.]plnk/|^[.]wh[.][.]wh[.]aufs|^var/cache/|^var/backups/|^var/tmp/|^var/log/|^var/lib/apt/|^var/lib/dhcp/|^var/lib/systemd/|^sbin/fsck[.]aufs|^etc/resolv[.]conf|^root/[.]Xauthority|^root/[.]xsession-errors|^root/[.]fehbg|^root/[.]fluxbox/lastwallpaper|^etc/mtab|^etc/fstab|^boot/|^dev/|^mnt/|^proc/|^run/|^sys/|^tmp/"
|
EXCLUDE="^\$|/\$|[.]wh[.][.]wh[.]orph/|^[.]wh[.][.]wh[.]plnk/|^[.]wh[.][.]wh[.]aufs|^var/cache/|^var/backups/|^var/tmp/|^var/log/|^var/lib/apt/|^var/lib/dhcp/|^var/lib/systemd/|^sbin/fsck[.]aufs|^etc/resolv[.]conf|^root/[.]Xauthority|^root/[.]xsession-errors|^root/[.]fehbg|^root/[.]fluxbox/lastwallpaper|^root/[.]fluxbox/menu_resolution|^etc/mtab|^etc/fstab|^boot/|^dev/|^mnt/|^proc/|^run/|^sys/|^tmp/"
|
||||||
CHANGES=/run/initramfs/memory/changes
|
CHANGES=/run/initramfs/memory/changes
|
||||||
|
|
||||||
if [ "$1" = "" ]; then
|
if [ "$1" = "" ]; then
|
||||||
|
|
|
||||||
|
|
@ -184,3 +184,8 @@ fi
|
||||||
if [ "$1" = "list" ]; then
|
if [ "$1" = "list" ]; then
|
||||||
print_branches
|
print_branches
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$1" = "savechanges" ]; then
|
||||||
|
shift
|
||||||
|
savechanges "$@"
|
||||||
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue