about summary refs log tree commit diff stats
path: root/home-manager/packages/scripts/deprecated/remove_start
blob: b745a4d1ef39e72eace0908923ff6b9922517acb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/bash

cd "$i" || exit 1
rm -r /tmp/scr
mkdir /tmp/scr/
star='#!/bin/sh\n\n# shellcheck source=/dev/null\n. /root/.local/lib/shell/lib'

for i in "$1"/*;do
    awk '
    !/out2\(/ &&
        !/readp\(/ &&
        !/# shellcheck/ &&
        !/^#!\/bin\/sh/ &&
        !/^#! \/bin\/sh/ &&
        !/^#! \/bin\/bash/ &&
        !/^#!\/bin\/bash/ &&
        !/^out\(/ &&
        !/^error\(/ &&
        !/^warning\(/ &&
        !/^msg\(/ &&
        !/msg2\(/ &&
        !/^die\(/ &&
        !/^dien\(/
    ' "$i" > /tmp/scr/"$(basename "$i")"
    sed -i "1 s|.*|$star\n&|" /tmp/scr/"$(basename "$i")"

done