Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/AnonR/anonr.TX.../proc/thread-s.../root/lib/rpm
File: kabi.sh
#!/bin/bash +x
[0] Fix | Delete
#
[1] Fix | Delete
# kabi.sh - Automatically extract any kernel symbol checksum from the
[2] Fix | Delete
# symvers file and add to RPM deps. This is used to move the
[3] Fix | Delete
# checksum checking from modprobe to rpm install for 3rd party
[4] Fix | Delete
# modules (so they can fail during install and not at load).
[5] Fix | Delete
[6] Fix | Delete
IFS=$'\n'
[7] Fix | Delete
[8] Fix | Delete
for symvers in $(grep -E '(/boot/symvers-.*|/lib/modules/[1-9].*/symvers)\.gz') "$@";
[9] Fix | Delete
do
[10] Fix | Delete
zcat $symvers | awk ' {print "kernel(" $2 ") = " $1 }'
[11] Fix | Delete
done
[12] Fix | Delete
[13] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function