我正在尝试在bash中使用find命令。通过匹配文件名的一部分和文件的年龄来查找文件,如下所示:
find . -name “*sample*” -type f -print -mtime +5
将打印当前目录中包含名称样本的所有文件。但我想要的是只打印超过5天的那些,并且无论我将-mtime参数设置为什么数字都无关紧要总是打印出所有包含样本的文件。
有什么想法吗?
答案 0 :(得分:3)
import {Component, OnInit, isDevMode} from '@angular/core';
@Component({
selector: 'app-root',
template: '<h1>Testing :)</h1>',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
ngOnInit(){
if(isDevMode()) {
require("style-loader!./../styles2.css");
} else {
require("style-loader!./../styles.css");
}
}
}
Where styles2:
h1 {
color: red;
}
Styles:
h1 {
color: green;
}
期望将参数组合在一起 - find
(Tests
,name
,mtime
等)必须在type
之前({{1} },Action
等。)
以下内容应该有效:
print