Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using the code below as a starting point, fill in the function body to do the following things. The function should accept two arguments.
Using the code below as a starting point, fill in the function body to do the following things. The function should accept two arguments. The first will be the name of a new file to create and the second should be a file extension (e.g. txt, md, yaml, xml, etc.). After you have filled in the missing pieces in the function body, you should be able to run the script and then see that a new file named foo.txt exists. #!/bin/bash create_file() { } echo "Testing the function create_file" create_file foo txt
Step by Step Solution
★★★★★
3.38 Rating (157 Votes )
There are 3 Steps involved in it
Step: 1
The function body should contain the following steps 1 Check if the file already exist...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started