Last active
February 11, 2022 21:54
-
-
Save CodeMaster7000/ea50df19a55a186080486ab6a01349ae to your computer and use it in GitHub Desktop.
A program in Shell which generates a file. Enjoy putting it to the test!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "What is the name of your file?" | |
| read FILE | |
| echo "This file will be created as ${FILE}_file." | |
| touch ${FILE}_file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment