لعرض عدد الهارد ديسك المتصل بالكمبيوتر:
#!/bin/bash
foo=$(lsblk | grep -c ^sd*)
final=$[$foo-1]
printf '%b\n' "You have currently $final Hard disks(s)"
My blog focus mainly on Computing specially administration and scripting, i focus as well on breeding lovebirds, and life and wisdom :).
لعرض عدد الهارد ديسك المتصل بالكمبيوتر: #!/bin/bash foo=$(lsblk | grep -c ^sd*) final=$[$foo-1] printf '%b\n' "You have...