-r FILE (conditional operator)

true if the file exists and is readable by you, i.e. the current user.

Examples

Different ways to test if a file is readable:
1
2
3
4
test -r ~/file && echo "readable"
[ -r ~/file ] && echo "readable"
# Bash
[[ -r ~/file ]] && echo "readable"
BashSupport Pro ist eine Bash IDE mit Unterstützung für -rprobieren Sie es aus!
© 2020–2024 Joachim Ansorg
Impressum
Datenschutz
Rechtliches