From bad37e0abec23ef3ead9874f19b40cde92a8b571 Mon Sep 17 00:00:00 2001 From: Arman Hossain <64675035+Arman170616@users.noreply.github.com> Date: Sat, 14 Oct 2023 10:23:20 +0600 Subject: [PATCH] =?UTF-8?q?=E0=A6=B6=E0=A7=87=E0=A6=B2=20=E0=A6=B8?= =?UTF-8?q?=E0=A7=8D=E0=A6=95=E0=A7=8D=E0=A6=B0=E0=A6=BF=E0=A6=AA=E0=A7=8D?= =?UTF-8?q?=E0=A6=9F=E0=A6=BF=E0=A6=82=20=E0=A6=85=E0=A7=8D=E0=A6=AF?= =?UTF-8?q?=E0=A6=BE=E0=A6=B0=E0=A7=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/shell.json | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/data/shell.json b/data/shell.json index 672392174..ccc8c55c7 100644 --- a/data/shell.json +++ b/data/shell.json @@ -139,6 +139,27 @@ "code": "echo $c" } ] + }, + { + "title": "শেল স্ক্রিপ্টিং অ্যারে", + "items": [{ + "definition": "অ্যারে মান সংজ্ঞায়িত করা", + "code": "array_name[index]=value" + }, + { + "definition": "ইনপুট নেয়া", + "code": "NAME[0]='ARMAN'" + }, + { + "definition": "অ্যারে মান অ্যাক্সেস করা", + "code": "${array_name[index]}" + }, + { + "definition": "ভ্যারিয়েবলের মান দেখানো", + "code": "echo 'First Person: ${NAME[0]}'" + } + + ] } ] -} \ No newline at end of file +}