如何以特定方式重命名目录。重击

时间:2019-06-07 11:19:21

标签: linux bash directory

我有一个名为 20190606_151020 的目录。我想在 files_2019-06-06_15-10-20 中重命名它。将来我将不知道当前目录的名称,但是它将是那里的唯一目录,并且我还知道我需要在 files _ 2019 之后添加前缀>应该是-

我该如何在BASH脚本中做到这一点?

我在bash中处理字符串非常不好:(

2 个答案:

答案 0 :(得分:0)

您将使用awk获得所需的输出。

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.less']
})

export class AppComponent implements OnInit {

  constructor(private router: Router) {}

  ngOnInit() {}

  isHomeRoute() {
    return this.router.url === '/';
  }
}

The sample output is shown below

答案 1 :(得分:-1)

您的意思是这样的吗?

for data in manifest:
  print(data.description)

用法

进入您的特殊目录所在的目录并开始 脚本。