From 6265188ee4ff188f452ec23bd91019a6860441ca Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Sat, 10 Mar 2018 18:16:31 -0800 Subject: [PATCH] Fix bash flag typo This had `-r` twice, but this one should be `-s` --- languages/bash.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/bash.sh b/languages/bash.sh index 898a66d..ea2606e 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -233,7 +233,7 @@ str1 > str2 # str1 is greater than str2 (alphabetically) -e file # file exists; same -a -f file # file exists and is a regular file (i.e., not a directory or other special type of file) -r file # you have read permission --r file # file exists and is not empty +-s file # file exists and is not empty -w file # your have write permission -x file # you have execute permission on file, or directory search permission if it is a directory -N file # file was modified since it was last read