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.
私のスクリプトコードは
history > a.txt
ただし、これはテキスト ファイルに何も格納しません。ただし、プロンプトでコマンドを使用すると機能します。
UNIX で KornShell (ksh) スクリプトを使用しています。
'history' コマンドは、コマンド ラインの外では無効になっています (スクリプトなど)。次を使用して有効にできます。
set -o history
これで、コマンド 'history' がスクリプトで使用できるようになります。