- /etc/prt-get.conf to ensure that scripts as executed:
runscripts yes # (no|yes)
- /etc/pkgmk.conf to ensure that md5sums are ignored:
PKGMK_IGNORE_MD5SUM="yes"
Kind of my extended memory with thoughts mostly on Linux and related technologies. You might also find some other stuff, a bit of SF, astronomy as well as old (quantum) chemistry posts.
Search This Blog
Monday, March 16, 2020
prt-get/pkgmk adjustments
If I'm ever going to lose my current Crux config. I need to remember, to adjust following files for Crux:
Thursday, March 12, 2020
Bash and Arrays
Short reminder for my 'extended memory' on how to deal with lists in bash.
To define:
Now the best, at least for scripts testing:
To print a whole array: declare -p list (please note, no "$" before list name).
Found at https://www.tutorialkart.com/bash-shell-scripting/bash-array/
To define:
- a list (an array): declare -a list
- a dictionary (an associative array): declare -A dict
Now the best, at least for scripts testing:
To print a whole array: declare -p list (please note, no "$" before list name).
Found at https://www.tutorialkart.com/bash-shell-scripting/bash-array/
Subscribe to:
Posts (Atom)