summary refs log tree commit diff stats
path: root/doc/ranger.1
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ranger.1')
-rw-r--r--doc/ranger.15
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/ranger.1 b/doc/ranger.1
index 2ad3d9c0..897a2969 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -711,11 +711,12 @@ This is a bash function (for \fI~/.bashrc\fR) to change the directory to the las
 visited one after ranger quits.  You can always type \f(CW\*(C`cd \-\*(C'\fR to go back to the
 original one.
 .PP
-.Vb 8
+.Vb 9
 \& function ranger\-cd {
 \&   tempfile=\*(Aq/tmp/chosendir\*(Aq
 \&   /usr/bin/ranger \-\-choosedir="$tempfile" "${@:\-$(pwd)}"
-\&   if [ \-f "$tempfile" \-a "$(cat \-\- "$tempfile")" != "$(echo \-n \`pwd\`)" ]; then
+\&   test \-f "$tempfile" &&
+\&   if [ "$(cat \-\- "$tempfile")" != "$(echo \-n \`pwd\`)" ]; then
 \&     cd \-\- "$(cat "$tempfile")"
 \&     rm \-f \-\- "$tempfile"
 \&   fi