file exists
file exists
This is identical in effect to -e. It has been "deprecated," [1] and its use is discouraged.
file is a
file is not zero size
file is a directory
file is a block device
device="/dev/sda2" # / (root directory) if [ -b "$device" ] then echo "$device is a block device." fi # /dev/sda2 is a block device. |
file is a character device
file is a pipe
file is a symbolic link
file is a symbolic link
file is a socket
file (descriptor) is associated with a terminal device
This test option may be used to check whether the
file has read permission (for the user running the test)
file has write permission (for the user running the test)
file has execute permission (for the user running the test)
set-group-id (sgid) flag set on file or directory
If a directory has the
set-user-id (suid) flag set on file
A binary owned by root
with
|
A file with the
Commonly known as the sticky bit, the save-text-mode flag is a special type of file permission. If a file has this flag set, that file will be kept in cache memory, for quicker access. [3] If set on a directory, it restricts write permission. Setting the sticky bit adds a t to the permissions on the file or directory listing.
|
If a user does not own a directory that has the sticky
bit set, but has write permission in that directory, she
can only delete those files that she owns in it. This
keeps users from inadvertently overwriting or deleting
each other's files in a publicly accessible directory,
such as
you are owner of file
group-id of file same as yours
file modified since it was last read
file
file
files
"not" -- reverses the sense of the tests above (returns true if condition absent).
Example 7-4. Testing for broken links
#!/bin/bash
# broken-link.sh
# Written by Lee bigelow <ligelowbee@yahoo.com>
# Used in ABS Guide with permission.
# A pure shell script to find dead symlinks and output them quoted
#+ so they can be fed to xargs and dealt with :)
#+ eg. sh broken-link.sh /somedir /someotherdir|xargs rm
#
# This, however, is a better method:
#
# find "somedir" -type l -print0|\
# xargs -r0 file|\
# grep "broken symbolic"|
# sed -e 's/^\|: *broken symbolic.*$/"/g'
#
#+ but that wouldn't be pure Bash, now would it.
# Caution: beware the /proc file system and any circular links!
################################################################
# If no args are passed to the script set directories-to-search
#+ to current directory. Otherwise set the directories-to-search
#+ to the args passed.
######################
[ $# -eq 0 ] && directorys=`pwd` || directorys=$@
# Setup the function linkchk to check the directory it is passed
#+ for files that are links and don't exist, then print them quoted.
# If one of the elements in the directory is a subdirectory then
#+ send that subdirectory to the linkcheck function.
##########
linkchk () {
for element in $1/*; do
[ -h "$element" -a ! -e "$element" ] && echo \"$element\"
[ -d "$element" ] && linkchk $element
# Of course, '-h' tests for symbolic link, '-d' for directory.
done
}
# Send each arg that was passed to the script to the linkchk() function
#+ if it is a valid directoy. If not, then print the error message
#+ and usage info.
##################
for directory in $directorys; do
if [ -d $directory ]
then linkchk $directory
else
echo "$directory is not a directory"
echo "Usage: $0 dir1 dir2 ..."
fi
done
exit $? |
Example 28-1, Example 10-7, Example 10-3, Example 28-3, and Example A-1 also illustrate uses of the file test operators.
| [1] | Per the 1913 edition of Webster's Dictionary:
| |
| [2] | Be aware that suid binaries may open security holes. The suid flag has no effect on shell scripts. | |
| [3] | On modern UNIX systems, the sticky bit is no longer used for files, only on directories. |