前提・実現したいこと
引数で指定したコマンドのファイル実体に対して ls –l を実行した結果を表示するシェルスクリプト
command_ls.sh を作成しなさい。ただし,引数が 0 個の場合は下記の実行例のようにエラー処理を行うこと。
<実行例>
$ ./command_ls.sh
Usage: ./command_ls.sh command
$ ./command_ls.sh date
-r-xr-xr-x 1 root wheel 18328 Dec 4 2012 /bin/date
$ ./command_ls.sh date vi
-r-xr-xr-x 1 root wheel 18328 Dec 4 2012 /bin/date
-r-xr-xr-x 6 root wheel 345848 Dec 4 2012 /usr/bin/vi