需要拆分文件路径/目录并使用shell脚本将其用作参数

Need to split the file path/directory and use it as an argument using shell script

我需要拆分文件路径/目录,并使用shell脚本将其用作参数。

我有一个文件路径:/home/ubuntu/testscriptsfolder/jmx/*.jmx并且只需要在变量中获取*.jmx,这样我就可以在一个run命令中将其作为参数传递。

请建议如何在shell脚本中实现。


这些命令非常有用:

1
2
3
4
$ basename /path/to/name
name
$ dirname /path/to/name
/path/to