Last active
January 18, 2019 06:12
-
-
Save kiebekierror/886e4f24d1bc39643d3ea1248fa48501 to your computer and use it in GitHub Desktop.
Linux find 命令 查找包含指定内容的文件.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
crontab -e | |
* * * * * /usr/bin/curl '$url' >/dev/null 2>&1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find ./ -type f -name "*.conf" | xargs grep "content" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment