Asir 関連 

  1. openxm fep asir
    
    unix シェルに戻るには,
    quit;
    
  2. Risa/Asir ドリル 2020 の1章, 1.3 までの入力を試す. なお, asir で起動と書いてあるが, openxm fep asir で起動すること.

unix シェル関連

以下はファイルマネージャーの画面と比較するとよい. (MacOS のアプリケーション/ユーティリティ/端末 (terminal) も同様).
  1.  cd ~
     pushd ~
     popd
     cd ~/Desktop
     cd ..
    

  2.  ls ~
     ls $HOME
     ls /home/user
     ls /home/user/Desktop
     ls ~/Desktop
     ls /bin
     which emacs
     
    ls -l でも試す.
  3.   touch test.txt  空のファイルを作成 
      cp test.txt test2.txt   コピー
      rm test.txt    ファイルを消す
      rm test2.txt   ファイルを消す
     

  4.    sleep 60
          ctrl-C で中断.
     

Windows powershell 関係

下の検索に powershell と入力して起動.
   ls
   ls Desktop
   ls Documents
   cd Desktop
   ls
   cd ..
   ls $env:USERPROFILE  
   ls $env:USERPROFILE\Desktop  
   new-item test.txt 
   cp test.txt test2.txt   コピー
   rm test.txt    ファイルを消す
   rm test2.txt   ファイルを消す
   sleep 60
      ctrl-C で中断.