windows基本命令 --快速打开文件夹

时间:2024-10-22 07:51:34
ranger命令

q_hanCode: [code=plain] #!/bin/bash # tmux requires unrecognized OSC sequences to be wrapped with DCS tmux; # <sequence> ST, and for all ESCs in <sequence> to be replaced with ESC ESC. It # only accepts ESC backslash for ST. We use TERM instead of TMUX because TERM # gets passed through ssh. function print_osc() { if [[ $TERM == screen* ]]; then printf "\033Ptmux;\033\033]" else printf "\033]" fi } # More of the tmux workaround described above. function print_st() { if [[ $TERM == screen* ]]; then printf "\a\033\\" else printf "\a" fi } function load_version() { if [ -z ${IMGCAT_BASE64_VERSION+x} ]; then IMGCAT_BASE64_VERSION=$(base64 --version 2>&1) export IMGCAT_BASE64_VERSION fi } function b64_encode() { load_version if [[ $IMGCAT_BASE64_VERSION =~ GNU ]]; then # Disable line wrap base64 -w0 else base64 fi } function b64_decode() { load_version i [/code]