Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make a script #80

Open
7 tasks
lakruzz opened this issue Jan 25, 2023 · 0 comments
Open
7 tasks

Make a script #80

lakruzz opened this issue Jan 25, 2023 · 0 comments
Labels
template Included in the template

Comments

@lakruzz
Copy link
Member

lakruzz commented Jan 25, 2023

Get rid of the sample files

Let's get rid of the sample files - so we can create them again.

Make sure your working directory is the root of the repository where the samples folder is - change directory if you have to. Now delete the samples folder, and everything in it using rm (it needs a few switches to work - but you'll figure it out).

  • How can you tell what directory you're in? - Put your reply in the notes to this issue.
  • What switches did you need to apply to rm to remove the folder and everything in it? - Put your reply in the notes to this issue.

Create the sample files again using a script

A shell script can do anything that can be done in the terminal. So all you need to do in order to turn the creation of the samples folder and its content into a script is simply to store the commands from before in a file.

  • Create a file setup-samples.sh in the root of the repository
  • Take exactly the same code as you ran in the previous issue and copy'n'paste it into the new file.
  • How do you execute a script in the terminal? Ask around or google it - write you findings in the issue.

Did you manage to run it? I only got this:

image

Apparently you need to get the permissions right in order to run it.

Make the script executable.

You can see the file permissions and attributes when you use the -l option to the ls command.

This is what I get:
image

The interesting bit in the context of this issue is the series of letters and dashes in the beginning - it indicates read, write and execute permissions for owner, group and others.

The command you need to use to solve this is called chmod short for change mode you can get different leves of help on the command by running several commands. Try these three one a time:

chmod
chmod --help
man chmod

The are especially useful when you know (just about) what the command is for and you just want to be reminded of syntax or scope.

But if you want a broader perspective I suggest you search a blogpost or something.

  • What would be a good search phrase to look for help on this topic? - put you suggestion in the notes on the issue.

I found this reference it looks comprehensive.

  • Make a note on this issue, of the chmod command that solved the issue.
@lakruzz lakruzz added the template Included in the template label Jan 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
template Included in the template
Projects
None yet
Development

No branches or pull requests

1 participant