例えば、以下のようなLHAファイルがあった場合、
		
>lha /l test.lzh
 
 [NO]  [ファイル名(ディレクトリ情報を含む)]
  001  1.txt
  002  readme.txt
  003  logo.bmp
  004  BeZIP.exe
  005  lbcomb.dll
  006  lhadll.dll
  007  sbcomb.dll
  008  ubcomb.dll
  009  beinstall.exe
  010  beinstall.INF
  011  BeZIP.chm
  012  BeZIPC.chm
  013  BeZIPC.exe
  014  CreateOwnMelt.exe
  015  readme.lzh
  016  regsvr32.exe
  017  term.dat
  018  testfolder/beinstall.exe
  019  testfolder/readme.lzh
  020  testfolder/term.dat
		例えば、以下のような入力すると、
		
>lha /o test.lzh testext 2 4

Uncompressed : readme.txt
Uncompressed : logo.bmp
Uncompressed : BeZIP.exe
3 Files
		とリスト番号の2番から4番までのファイルを展開(解凍)します。
		
		また、以下のような入力すると、
		
>lha /o test.lzh testext 2

Uncompressed : readme.txt
1 Files
		とリスト番号の2番のみのファイルを展開(解凍)します。
		
>lha /o test.lzh testext

構文エラー
 /o test.lzh testext
		とリスト番号を指定しないとエラーになることに注意してください。