Header Ads Widget

Ticker

6/recent/ticker-posts

Write a shell script to display all executable files, directories and zero sized files from current directory

 echo Executable files

files=$(find lab_solutions -executable -type f)
echo $files
echo
echo List of Directories
dir=$(ls -d )
echo $dir
echo
echo List of zero sized files
zero=$(find -size 0)
echo $zero

Post a Comment

0 Comments