Problem with Ubuntu 19.10 Server Server issues reported in Ubuntu 19.10 version.
Problem with Ubuntu 19.10 Server Server issues reported in Ubuntu 19.10 version.
Avoid using printF instead of printf. Be more careful with your writing. printf comes from the coreutils package—install it via apt if needed. You can also include this in your script to verify printf's presence and install it if necessary: which printf >/dev/null if [ $? -eq 1 ] then apt -y install coreutils