F5F Stay Refreshed Software Operating Systems 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.

Problem with Ubuntu 19.10 Server Server issues reported in Ubuntu 19.10 version.

Pages (2): Previous 1 2
D
Dracode
Member
150
02-23-2023, 11:55 AM
#11
The script fails to execute without it since the SFTP upload displays it as an Unknown Source file.
D
Dracode
02-23-2023, 11:55 AM #11

The script fails to execute without it since the SFTP upload displays it as an Unknown Source file.

L
Luke101107
Junior Member
17
02-24-2023, 06:29 AM
#12
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
L
Luke101107
02-24-2023, 06:29 AM #12

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

L
LizLuzz
Junior Member
14
02-24-2023, 08:25 AM
#13
Sure, I'll adjust that for you. Let me know if you need anything else.
L
LizLuzz
02-24-2023, 08:25 AM #13

Sure, I'll adjust that for you. Let me know if you need anything else.

Pages (2): Previous 1 2