Open github-actions[bot] opened 1 year ago
ls 2 cd 3 cd .git 4 cd .github 5 cd cd .github/ 6 cd .github/ 7 .github/ 8 ls 9 cd 10 cd .github/ 11 .. 12 cd .github/ 13 .. 14 /workspaces/ITA-BBS-madsen10/setup-samples.sh 15 chmod +x setup-samples.sh 16 /workspaces/ITA-BBS-madsen10/setup-samples.sh 17 history 18 ls -l 19 /workspaces/ITA-BBS-madsen10/setup-samples.sh 20 mkdir samples 21 mkdir samples/animals 22 mkdir samples/animals/countries 23 mkdir samples/animals/countries/movies 24 ANIMALS=('Apes' 'Elephants' 'Elephant babies' 'Monkies' 'apes') 25 COUNTRIES=('Denmark' 'Sweden' 'USA' 'France' 'Italy' '.apes' 'North Korea') 26 MOVIES=('Batman' 'Sex And The City' 'JFK' 'Poltergeist' 'Germany') 27 cd samples/animals 28 for id in ${ANIMALS[@]}; do echo $id >> $id.txt; done 29 cd countries 30 for id in ${COUNTRIES[@]}; do echo $id >> $id.txt; done 31 cd movies 32 for id in ${MOVIES[@]}; do echo $id >> $id.txt; done 33 history
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 thesamples
folder, and everything in it usingrm
(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:
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 thels
command.This is what I get:
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: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.