0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.137.221.252


Current Path : /usr/sbin/
Upload File :
Current File : //usr/sbin/update-grub-gfxpayload

#! /bin/sh
set -e

mkdir -p /boot/grub
for x in /usr/share/grub-gfxpayload-lists/blacklist/*; do
	case $x in
	    *~|*/\#*\#|*.dpkg-*)
		continue
		;;
	esac
	[ -e "$x" ] || continue
	cat "$x"
done >/boot/grub/gfxblacklist.txt.new
mv /boot/grub/gfxblacklist.txt.new /boot/grub/gfxblacklist.txt

exit 0