Code Library
Home Submit Free Hosting Link To Us Contacts

Bash Mysterious binaries

Bash Mysterious binaries Bash Bash Mysterious binaries Download (.zip)



#!/bin/bash

# What are all those mysterious binaries in /usr/X11R6/bin?

DIRECTORY="/usr/X11R6/bin"
# Try also "/bin", "/usr/bin", "/usr/local/bin", etc.

for file in $DIRECTORY/*
do
whatis `basename $file` # Echoes info about the binary.
done

exit 0
# You may wish to redirect output of this script, like so:
# ./what.sh >>whatis.db
# or view it a page at a time on stdout,
# ./what.sh | less




  • BashMysterious binaries


Bash Mysterious binaries