Skip to content

Commit ea5ff19

Browse files
authored
add bash scripting basics
1 parent 0342b86 commit ea5ff19

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

src/data/courseData.js

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,34 @@ const courses = {
1111
title: 'Course 2: Getting Started with CLI',
1212
author: 'Dev Gautam Kumar',
1313
image: 'https://dummyimage.com/600x400/FF9800/fff&text=CLI+PART+1', // Orange
14-
description: 'Kick your journey with CLI',
14+
description: 'Kick your journey with CLI.',
1515
embed_link: 'https://www.youtube.com/embed/B4b9pX1lqU4',
1616
contentFile: 'course2.md',
1717
},
18-
'course 3: playing in the shell': {
18+
'course 3: playing in the shell': {
1919
title: 'Course 3: Playing in the Shell',
2020
author: 'Dev Gautam Kumar',
2121
image: 'https://dummyimage.com/600x400/FF9800/fff&text=Playing+in+the+Shell', // Orange
22-
description: 'Get famiiar with UNIX Shell',
22+
description: 'Get familiar with UNIX Shell.',
2323
embed_link: 'https://www.canva.com/design/DAGTIaBPhDM/a_G7XN1OSANZPmkoR_vLnQ/view?embed',
2424
contentFile: 'course3.md',
2525
},
26-
'course 4: getting started with cli': {
26+
'course 4: introduction to bourne shell': {
2727
title: 'Course 4: Introduction to Bourne Shell',
2828
author: 'Dev Gautam Kumar',
2929
image: 'https://dummyimage.com/600x400/fff&text=B0urn3+$h3ll', // Orange
30-
description: 'Get started with Shell Scripts',
30+
description: 'Get started with Shell Scripts.',
3131
embed_link: 'https://www.canva.com/design/DAGS2jSbGgI/NHrTUX9491PY9e31licHrA/view?embed',
32-
contentFile: 'course2.md',
32+
contentFile: 'course4.md',
3333
},
34+
'course 5: bash scripting basics': {
35+
title: 'Course 5: Bash Scripting Basics',
36+
author: 'Dev Gautam Kumar',
37+
image: 'https://dummyimage.com/600x400/8BC34A/fff&text=Bash+Scripting+Basics', // Green
38+
description: 'Learn the basics of Bash scripting and automate tasks.',
39+
embed_link: 'https://www.youtube.com/embed/fA8gH6wDsm0',
40+
contentFile: 'course5.md',
41+
}
3442
};
43+
3544
export default courses;

0 commit comments

Comments
 (0)