-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathheader.sh
More file actions
executable file
·19 lines (18 loc) · 991 Bytes
/
header.sh
File metadata and controls
executable file
·19 lines (18 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/env bash
# Copyright 2017-2018 by SDRausty. All rights reserved. 🌎 🌍 🌏 🌐 🗺
# Hosted https://sdrausty.github.io/TermuxArch courtesy https://pages.github.com
# https://sdrausty.github.io/TermuxArch/CONTRIBUTORS Thank you for your help.
################################################################################
IFS=$'\n\t'
set -Eeuo pipefail
shopt -s nullglob globstar
unset LD_PRELOAD
fileheader="#!/bin/env bash\\n# Copyright 2017-2018 by SDRausty. All rights reserved. 🌎 🌍 🌏 🌐 🗺\\n# Hosting https://sdrausty.github.io/TermuxArch courtesy https://pages.github.com\\n# https://sdrausty.github.io/TermuxArch/CONTRIBUTORS Thank you for your help.\\n################################################################################\\nIFS=$'\\\\n\\\\t'\\nset -Eeuo pipefail\\nshopt -s nullglob globstar\\nunset LD_PRELOAD\\n"
addae() {
printf $fileheader > ae
cat >> ae <<- EOM
watch cat /proc/sys/kernel/random/entropy_avail
EOM
}
addae
cat ae