হ্যাঁ, আপনি বাইন্ড কমান্ডটি ব্যবহার করতে পারেন
bind '"\ey"':"\"less \C-m\""
এটি Alt-e কে কম কমান্ডে মানচিত্র করে এবং এটি সম্পাদন করে (\ সেন্টিমিটার ওরফে Ctrl-m সহ)
সম্ভবত | আপনার এড়াতে হবে
bind '"\ey"':"\"\|less \C-m\""
আপনি যদি এটি কমান্ড লাইনে কেবল যুক্ত করতে চান তবে * \ সেমি \ "" সরান
ইতিমধ্যে কিছু বাঁধাই সংজ্ঞায়িত হওয়ায় সতর্ক থাকুন:
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + L Clears the Screen, similar to the clear command
Ctrl + U Clears the line before the cursor position. If you are at the end of the line, clears the entire line.
Ctrl + H Same as backspace
Ctrl + R Let’s you search through previously used commands
Ctrl + C Kill whatever you are running
Ctrl + D Exit the current shell
Ctrl + Z Puts whatever you are running into a suspended background process. fg restores it.
Ctrl + W Delete the word before the cursor
Ctrl + K Clear the line after the cursor
Ctrl + T Swap the last two characters before the cursor
Esc + T Swap the last two words before the cursor
Alt + F Move cursor forward one word on the current line
Alt + B Move cursor backward one word on the current line
Tab Auto-complete files and folder names
কন্ট্রোল কীটি যেমন আপনি উপরে দেখতে পাচ্ছেন, সেমি দিয়ে তৈরি করা হয়েছে, সুতরাং আপনি নিম্নরূপে সিআরটিএল-জি দিয়ে কম কমান্ড শুরু করতে পারেন:
"" \ সিজি "" বাঁধুন: "\" \ | কম * \ সেমি \ ""
আল্টের মূল কোডগুলি পেতে (কেবলমাত্র এএলটি-র জন্য), আপনি শেল থেকে পঠন কমান্ডটি ব্যবহার করতে পারেন:
@~$ read
^[y
^ [y সমান \ ey
আরও তথ্যের জন্য, এই প্রশ্নের উত্তর স্ট্যাকওভারফ্লোতেও দেওয়া হয়েছিল:
/programming/4119991/bash-call-script-with-customized-keyboard-shortcuts