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 | |
#suppose we have a NAS bookmarked as music w/audio stored in "artist/album" format: | |
# ls_nas.sh music #list all artists | |
# ls_nas.sh music L #list all arists starting w/L | |
# ls_nas.sh music L*/ #list all albums of artists starting w/L | |
if [[ "$#" < 1 ]]; then | |
echo "ls_nas.sh <bookmark> [glob]" | |
echo " " |