从文本文件中获取具有随机目录名的有效路径
如何从字符串中获取有效路径? 例如,我有以下文本,file.txt它将始终使用以下模式以随机路径生成: Some error occurred. rerun the script with "-d" option and check the output and logfile: /tmp/du_resp_16929. 路径/tmp/du_resp_XXXXX末尾有随机数(标记为XXXXX)。获取路径的最佳方法是什么? 我知道如何使用 awk 像下面这样来获取字符串的末尾,但有时路径可能位于中间或开头。 awk ‘{print $(NF)}’ file.t...