Skip to content

Commit 40ee02a

Browse files
author
Sabbir Ahmed
authored
Merge pull request #1050 from subhayudutta/new-user
Add Shell Scripting unique concepts
2 parents 0d97158 + 0567e67 commit 40ee02a

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

data/shell.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,27 @@
159159
"code": "echo 'First Person: ${NAME[0]}'"
160160
}
161161

162+
]
163+
},
164+
{
165+
"title": "শেল স্ক্রিপ্টিং অদ্ভুত নথি",
166+
"items": [{
167+
"definition": "ফাংশন তৈরি করা",
168+
"code": "my_function() {}"
169+
},
170+
{
171+
"definition": "উপাদান প্রদানের দ্বারা কমান্ড লাইন থেকে ইনপুট নেয়া",
172+
"code": "read -p name"
173+
},
174+
{
175+
"definition": "যদি-হলে বা যদি না হলে শর্ত পরীক্ষা করা",
176+
"code": "if [ condition ]; then fi"
177+
},
178+
{
179+
"definition": "একটি ফাইল থেকে পংক্তি পংক্তি কোড পড়া",
180+
"code": "while IFS= read -r line; do"
181+
}
182+
162183
]
163184
}
164185

0 commit comments

Comments
 (0)