Forked from gunnarig/gist:1330bb0673c2b8506ad1a30ec036831a
Last active
September 9, 2018 21:29
-
-
Save beltiras/3beb2e18e253b1db7c76215cc8fb5c72 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "$#" -eq 0 ] | |
then | |
ls | sort | run-parts ${BASH_SOURCE[0]} | |
fi | |
if [ $1 ! 1 ] | |
then | |
echo "Invalid number of arguments" | |
exit | |
fi | |
if [ ! -d $1 ] | |
then | |
echo "directory does not exist" | |
exit | |
fi | |
cd $1 | |
ls $1 | sort | xargs run-parts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment