Details
-
Technical task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
11.0.0
-
None
-
None
Description
Only reason to have AWK installed with Debian server package is
scripts/mysql_install_db.sh
|
It contains
echo "$resolved" | awk '/ /{print $6}
|
which can be turned to
echo "$resolved" | while read a ; do echo ${a##* } ; done
|
which should be Bash, Dash and Zsh compliant