You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
776 B

#!/bin/bash
file=$1
# Get systemd_start_stop_functions()
startline=$(grep -n "systemd_start_stop_functions()" "$file" | cut -d: -f1 | head -1)
endline=$(grep -n "displaylink_bootstrapper_code()" "$file" | cut -d: -f1 | head -1)
source <(
tail -n +$startline $file | head -n +$(($endline - $startline - 1))
)
# Get displaylink_bootstrapper_code()
startline=$(grep -n "displaylink_bootstrapper_code()" "$file" | cut -d: -f1 | head -1)
endline=$(grep -n "chmod 0744 \"\$filename\"" "$file" | cut -d: -f1 | head -1)
source <(
tail -n +$startline $file | head -n +$(($endline - $startline + 2))
)
COREDIR=$(mktemp -d)
create_bootstrap_file "systemd" "$COREDIR/udev.sh"
sed -i -e '1 s/^.*$/\#!\/usr\/bin\/bash/' "$COREDIR/udev.sh"
cat "$COREDIR/udev.sh"
rm -rf "$COREDIR"