سؤال

هل هناك ما يعادل Bash Pushd / Popd Build في أوامر KSH؟

بالنسبة لأولئك الذين لا يعرفون ما يدفعون و Popd في Bash Do، إليك الوصف من صفحة الرجل

   pushd [-n] [dir]
   pushd [-n] [+n] [-n]
          Adds  a directory to the top of the directory stack, or rotates
          the stack, making the new top of the stack the current  working
          directory.   With  no arguments, exchanges the top two directo-
          ries and returns 0, unless the directory stack is empty.


   popd [-n] [+n] [-n]
          Removes entries from the directory stack.  With  no  arguments,
          removes  the top directory from the stack, and performs a cd to
          the new top directory.  Arguments, if supplied, have  the  fol-
          lowing meanings:

شكرًا

هل كانت مفيدة؟

المحلول

عندما اكتشفت أن KSH لم تشمل هذه، كتبت بلدي. أنا وضعت هذا في ~/bin/dirstack.ksh و الخاص بي .kshrc يتضمن الملف مثل هذا:

. ~/bin/dirstack.ksh

وهنا محتويات dirstack.ksh:

# Implement a csh-like directory stack in ksh
#
# environment variable dir_stack contains all directory entries except
# the current directory

unset dir_stack
export dir_stack


# Three forms of the pushd command:
#    pushd        - swap the top two stack entries
#    pushd +3     - swap top stack entry and entry 3 from top
#    pushd newdir - cd to newdir, creating new stack entry

function pushd
{
   sd=${#dir_stack[*]}  # get total stack depth
   if [ $1 ] ; then
      if [ ${1#\+[0-9]*} ] ; then
         # ======= "pushd dir" =======

         # is "dir" reachable?
         if [ `(cd $1) 2>/dev/null; echo $?` -ne 0 ] ; then
            cd $1               # get the actual shell error message
            return 1            # return complaint status
         fi

         # yes, we can reach the new directory; continue

         (( sd = sd + 1 ))      # stack gets one deeper
         dir_stack[sd]=$PWD
         cd $1
         # check for duplicate stack entries
         # current "top of stack" = ids; compare ids+dsdel to $PWD
         # either "ids" or "dsdel" must increment with each loop
         #
         (( ids = 1 ))          # loop from bottom of stack up
         (( dsdel = 0 ))        # no deleted entries yet
         while [ ids+dsdel -le sd ] ; do
            if [ "${dir_stack[ids+dsdel]}" = "$PWD" ] ; then
               (( dsdel = dsdel + 1 ))  # logically remove duplicate
            else
               if [ dsdel -gt 0 ] ; then        # copy down
                  dir_stack[ids]="${dir_stack[ids+dsdel]}"
               fi
               (( ids = ids + 1 ))
            fi
         done

         # delete any junk left at stack top (after deleting dups)

         while [ ids -le sd ] ; do
            unset dir_stack[ids]
            (( ids = ids + 1 ))
         done
         unset ids
         unset dsdel
      else
         # ======= "pushd +n" =======
         (( sd = sd + 1 - ${1#\+} ))    # Go 'n - 1' down from the stack top
         if [ sd -lt 1 ] ; then (( sd = 1 )) ; fi
         cd ${dir_stack[sd]}            # Swap stack top with +n position
         dir_stack[sd]=$OLDPWD
      fi
   else
      #    ======= "pushd" =======
      cd ${dir_stack[sd]}       # Swap stack top with +1 position
      dir_stack[sd]=$OLDPWD
   fi
}

function popd
{
   sd=${#dir_stack[*]}
   if [ $sd -gt 0 ] ; then
      cd ${dir_stack[sd]}
      unset dir_stack[sd]
   else
      cd ~
   fi
}

function dirs
{
   echo "0: $PWD"
   sd=${#dir_stack[*]}
   (( ind = 1 ))
   while [ $sd -gt 0 ]
   do
      echo "$ind: ${dir_stack[sd]}"
      (( sd = sd - 1 ))
      (( ind = ind + 1 ))
   done
}

نصائح أخرى

إذا كنت موافقا مع مجرد مستوى واحد من تتبع الظهر، فيمكنك المستعار "القرص المضغوط" أو "CD OldPWD" إلى POFD.

أما بالنسبة إلى Dir.ksh ... وفقا لجوجل هو جزء من الحزمة التجارية:

ملاحظة

POFD هي وظيفة Kornshell المحددة في الملف

$ROOTDIR/etc/dir.ksh.

تتم معالجة هذا الملف عادة بواسطة قذيفة تسجيل الدخول أثناء معالجة الملف $ Rootdir / ETC / Profile.ksh. إذا فشل نظامك في التعرف على أمر POFD، تحقق من ملف ملف التعريف الخاص بك لضمان إجراء مكالمة إلى dir.ksh.

التوفر

Toolkit mks for power users mks toolkit لنظام المسؤولين mks toolkit للمطورين mks toolkit for interoperability mks toolkit للمحترفين المطورين mks toolkit for europe developers mks toderkit for e المؤسسة مطورين

عادة ما أستخدم ضربة صعبة لهذا النوع من الأشياء:

(cd tmp; echo "test" >tmpfile)

هذا يتغير إلى tmp دليل ويخلق ملف يسمى tmpfile في هذا الدليل. بعد إرجاع الفضل، يتم استعادة الدليل الحالي إلى ما كان عليه قبل بدء الصعود. وذلك لأن كل مثيل Shell لديه فكرته الخاصة بما هو "الدليل الحالي" هو، وتغيير الدليل الحالي في Subshell لا يؤثر على قذيفة تسمى عليه.

هناك خطأ خفية في إجابة مقبولة. وبعد عند استدعاء "PushD" بدون ARG ($ 1 = "") و Dir_Stack فارغ، فهي ضخ إدخال فارغ إلى المكدس المذكور الذي لا يمكن "برزته" خارج. يبدو أن اصطياد حالة الحافة لإصلاحها.

إليك التعليمات البرمجية الصحيحة. تحرير: يشكو من Stderr عند عدم الدفع (ثابت ث / Bash Pushd). غادرت القائمة المفهرسة على "دول" لأنني أشعر أنها تحسنة: ")

# Implement a csh-like directory stack in ksh
#
# environment variable dir_stack contains all directory entries except
# the current directory

unset dir_stack
export dir_stack


# Three forms of the pushd command:
#    pushd        - swap the top two stack entries
#    pushd +3     - swap top stack entry and entry 3 from top
#    pushd newdir - cd to newdir, creating new stack entry

function pushd
{
   sd=${#dir_stack[*]}  # get total stack depth
   if [ $1 ] ; then
      if [ ${1#\+[0-9]*} ] ; then
         # ======= "pushd dir" =======

         # is "dir" reachable?
         if [ `(cd $1) 2>/dev/null; echo $?` -ne 0 ] ; then
            cd $1               # get the actual shell error message
            return 1            # return complaint status
         fi

         # yes, we can reach the new directory; continue

         (( sd = sd + 1 ))      # stack gets one deeper
         dir_stack[sd]=$PWD
         cd $1
         # check for duplicate stack entries
         # current "top of stack" = ids; compare ids+dsdel to $PWD
         # either "ids" or "dsdel" must increment with each loop
         #
         (( ids = 1 ))          # loop from bottom of stack up
         (( dsdel = 0 ))        # no deleted entries yet
         while [ ids+dsdel -le sd ] ; do
            if [ "${dir_stack[ids+dsdel]}" = "$PWD" ] ; then
               (( dsdel = dsdel + 1 ))  # logically remove duplicate
            else
               if [ dsdel -gt 0 ] ; then        # copy down
                  dir_stack[ids]="${dir_stack[ids+dsdel]}"
               fi
               (( ids = ids + 1 ))
            fi
         done

         # delete any junk left at stack top (after deleting dups)

         while [ ids -le sd ] ; do
            unset dir_stack[ids]
            (( ids = ids + 1 ))
         done
         unset ids
         unset dsdel
      else
         # ======= "pushd +n" =======
         (( sd = sd + 1 - ${1#\+} ))    # Go 'n - 1' down from the stack top
         if [ sd -lt 1 ] ; then (( sd = 1 )) ; fi
         cd ${dir_stack[sd]}            # Swap stack top with +n position
         dir_stack[sd]=$OLDPWD
      fi
   else
      #    ======= "pushd" =======
      # swap only if there's a value to swap with
      if [ ${#dir_stack[*]} = "0" ]; then
         echo "ksh: pushd: no other directory" >&2
      else
         cd ${dir_stack[sd]}       # Swap stack top with +1 position
         dir_stack[sd]=$OLDPWD
      fi
   fi
}

function popd
{
   sd=${#dir_stack[*]}
   if [ $sd -gt 0 ] ; then
      cd ${dir_stack[sd]}
      unset dir_stack[sd]
   else
      cd ~
   fi
}

function dirs
{
   echo "0: $PWD"
   sd=${#dir_stack[*]}
   (( ind = 1 ))
   while [ $sd -gt 0 ]
   do
      echo "$ind: ${dir_stack[sd]}"
      (( sd = sd - 1 ))
      (( ind = ind + 1 ))
   done
}

إذا فشل نظامك في التعرف على أمر PushD، تحقق من ملف ملف التعريف الخاص بك لضمان إجراء مكالمة إلى dir.ksh.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top