ルートディレクトリに実行可能ファイルを出力する 2013年12月15日rootoutput.sh #!/bin/bash for yh in `ls /root` do if [ -x $yh ] then echo $yh fi done SourcePosted by arkgame