Skip to content

Commit 1fb2ec3

Browse files
authored
Merge pull request #589 from istiak101/patch-1
Update linux-command-line.json
2 parents 8b86cfd + 702d52a commit 1fb2ec3

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

data/linux-command-line.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
"definition":"শুধু কার্নেল দেখা",
2525
"code":"uname -r"
2626
},
27+
{
28+
"definition":"শুধু আর্কিটেকচার দেখা",
29+
"code":"uname -m"
30+
},
31+
{
32+
"definition":"ভার্চুয়ালাইজেশন দেখা",
33+
"code":"systemd-detect-virt"
34+
},
2735
{
2836
"definition":"আপটাইম দেখা",
2937
"code":"uptime"
@@ -69,16 +77,16 @@
6977
"code":"date"
7078
},
7179
{
72-
"definition":"ইউজার ইক্টিবিটি লগ দেখা",
80+
"definition":"ইউজার এক্টিভিটি লগ দেখা",
7381
"code":"sudo less /var/log/auth.log"
7482
},
7583
{
7684
"definition":"পিসি বন্ধ করা",
77-
"code":"sudo poweroff অথবা poweroff"
85+
"code":"sudo poweroff অথবা poweroff অথবা shutdown"
7886
},
7987
{
8088
"definition":"কমান্ড লাইন থেকে পিসি বন্ধ করে আবার চালু করা",
81-
"code":"sudo reboot অথবা reboot"
89+
"code":"sudo reboot অথবা reboot অথবা shutdown -r"
8290
}
8391
]
8492
},
@@ -269,6 +277,10 @@
269277
"definition":".gz ফাইলকে এক্সট্রাক্ট করতে",
270278
"code":"tar xzf file.tar.gz"
271279
},
280+
{
281+
"definition": "কোনো ফোল্ডার খোঁজার জন্য",
282+
"code": "find /example/path -type d -name folder_name"
283+
},
272284
{
273285
"definition": "কোনো ফাইল খোঁজার জন্য",
274286
"code": "find /example/path -type f -name file_name.txt"

0 commit comments

Comments
 (0)