Tagged Questions

2
votes
5answers
2k views

How to determine file type in bash script?

I am writing a nightly build script in bash. Everything is fine and dandy except for one little snag: #!/bin/bash for file in "$PATH_TO_SOMEWHERE"; do if [ -d $file ] then …