এটির সাথে মোটেই তেমন সম্পর্ক নেই bash
, তবে এটি প্যাকেজে প্রোগ্রাম করা সম্পূর্ণতার উপর নির্ভর করে bash-completion
।
ফাইলটিতে কিছু মন্তব্য থেকে /etc/bash_completion.d/mount
:
# mount(8) completion. This will pull a list of possible mounts out of
# /etc/{,v}fstab, unless the word being completed contains a ':', which
# would indicate the specification of an NFS server. In that case, we
# query the server for a list of all available exports and complete on
# that instead.
#
# umount(8) completion. This relies on the mount point being the third
# space-delimited field in the output of mount(8)
#
এছাড়াও, আপনি মূল ফাইলটিতে /etc/bash_completion
নিম্নলিখিত মন্তব্যটি পেয়েছেন, যা স্পষ্টভাবে আলোচনা mount
এবং umount
আদেশ দেয়:
# A meta-command completion function for commands like sudo(8), which need to
# first complete on a command, then complete according to that command's own
# completion definition - currently not quite foolproof (e.g. mount and umount
# don't work properly), but still quite useful.
#
আপডেট :
সম্পর্কে মন্তব্য mount
এবং umount
কমান্ড সরানো হয়েছে থেকে bash_completion
এ কমিট :
_command_offset: Restore compopts used by called command.
This fixes completions that rely on their compopts, most notably
mount(8).
Fixes bash-completion bug #313183.
মুক্তিপ্রাপ্ত মধ্যেbash-completion 1.90
sudo umount
। এনজোটিব যেমন উল্লেখ করেছেন, এই বৈশিষ্ট্যটি ভেঙে গেছেmount
এবং শেষবার যাচাই করেছিলাম, এটি আর্কেও ভেঙে গেছে।