bash – 从变量的末尾删除斜杠

前端之家收集整理的这篇文章主要介绍了bash – 从变量的末尾删除斜杠前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
bash自动完成使a /在目录的结尾我怎么可以剥离出来?

感谢提示

#!/bin/sh

target=$1

function backup(){
  date=`date "+%y%m%d_%H%M%S"`
  PWD=`pwd`
  path=$PWD/$target
  tar czf /tmp/$date$target.tar.gz $path
}

backup
使用
target=${1%/}

A reference

原文链接:https://www.f2er.com/bash/392049.html

猜你在找的Bash相关文章