码迷,mamicode.com
首页 > 系统相关 > 详细

Mac下CoreShell使用lrzsz命令

时间:2021-04-20 15:02:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:apple   nal   date   targe   print   The   bashrc   blank   process   

  • Mac下Core Shell 使用lrzsz命令,上传,下载文件
  • 新增~/.bashrc_Core_Shell
# Bash support for Core Shell, reference: /etc/bashrc_Apple_Terminal on macOS

# Report Working Directory
#
# Tell the Core Shell about the current working directory at each prompt.

if [ -z "$INSIDE_EMACS" ]; then
    update_coreshell_cwd() {
        # Identify the directory using a "file:" scheme URL, including
        # the host name to disambiguate local vs. remote paths.

        # Percent-encode the pathname.
        local url_path=‘‘
        {
            # Use LC_CTYPE=C to process text byte-by-byte. Ensure that
            # LC_ALL isn‘t set, so it doesn‘t interfere.
            local i ch hexch LC_CTYPE=C LC_ALL=
            for ((i = 0; i < ${#PWD}; ++i)); do
                ch="${PWD:i:1}"

                if [[ "$ch" =~ [/._~A-Za-z0-9-] ]]; then
                    url_path+="$ch"
                else
                    printf -v hexch "%02X" "‘$ch"
                    # printf treats values greater than 127 as
                    # negative and pads with "FF", so truncate.
                    url_path+="%${hexch: -2:2}"
                fi
            done
        }

        if [ -n "$TMUX" ]; then
            printf ‘\ePtmux;\e\e]7;%s\a\e\\‘ "file://$HOSTNAME$url_path"
        else
            printf ‘\e]7;%s\a‘ "file://$HOSTNAME$url_path"
        fi
    }

    PROMPT_COMMAND="update_coreshell_cwd${PROMPT_COMMAND:+; $PROMPT_COMMAND}"
fi
  • 再执行如下命令
~/.bashrc_Core_Shell && grep -qs ".bashrc_Core_Shell" ~/.bash_profile || echo $‘\n[[ -n "$SSH_TTY" || -n "$SSH_CONNECTION" ]] && [ -r "$HOME/.bashrc_Core_Shell" ] && . "$HOME/.bashrc_Core_Shell"‘ >> ~/.bash_profile

Mac下CoreShell使用lrzsz命令

标签:apple   nal   date   targe   print   The   bashrc   blank   process   

原文地址:https://www.cnblogs.com/xujunkai/p/14673292.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!