Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Enter キーをコマンドにエイリアスして、プロンプトで Enter キーを押したときにコマンドが実行されるようにすることはできますか。たとえば、プロンプトで Enter キーを押すと、ls コマンドが実行されます。
abc@def$ <output of ls command> abc@def$
エイリアスを .bashrc ファイルに追加できるようにします。
ありがとうございました..!
プロンプトコマンドを設定できます。
export PROMPT_COMMAND="ls"