In GNU Make you have a list of numbers:
NUMBERS = 8 9 10
How can you pad them with leading zeroes?
NUMBERS = 08 09 10
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Seems that the Make (at least GNU Make) does not have functions to deal well with this type of data. You can go wild and use the shell (only on unixes):
Will print: