練習問題

練習問題

問1 2020年1月1日を第1日として通算日を表示する2020年10月のカレンダーを出力してください。

実行結果

[user01@localhost ~]$ ???
               10月 2020
 日    月   火    水    木   金   土
                          275 276 277
278 279 280 281 282 283 284
285 286 287 288 289 290 291
292 293 294 295 296 297 298
299 300 301 302 303 304 305

問2 ファイルやディレクトリの情報を出力する「ls」コマンドのマニュアルを出力してください。

実行結果

[user01@localhost ~]$ ???
NAME
       ls - list directory contents

SYNOPSIS
       ls [OPTION]... [FILE]...

DESCRIPTION
       List  information  about  the FILEs (the current directory by default).
       Sort entries alphabetically if none of -cftuvSUX nor --sort  is  speci‐
       fied.
…

問3 文字を検索する「find」コマンドのヘルプを出力してください。

実行結果

[user01@localhost ~]$ ???
使用法: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path...] [expression]

デフォルトのパスはカレントディレクトリです。デフォルトの評価式 (expression) は -print です。評価式は演算子、オプション、テストおよびアクションで構成されます。

演算子 (優先順位は降順です。特に指定がない場合は -and が暗黙的に使用されます):
      ( EXPR )   ! EXPR   -not EXPR   EXPR1 -a EXPR2   EXPR1 -and EXPR2
      EXPR1 -o EXPR2   EXPR1 -or EXPR2   EXPR1 , EXPR2
…

NEXT>> 4章 ファイルとディレクトリ