Este é um blog onde anoto dicas técnicas de informática e computação.
This is a blog where I write down technical tips on computing.
Be aware that some resources used in this blog may use cookies to collect information used by Ads and Google Analytics. I do not monetize from this website, neither require or use personal information.
Wednesday, October 26, 2016
Linux bash wildcards and multiple file name paterns
ls -l trc/CC/CC_SRV_ReloadExec_{Opsc,Pfe,OCS}* tail -f trc/CC/CC_SRV_ReloadExec_{Opsc,Pfe,OCS}* find files with name like core.12345 find | grep "core\.[0-9]\{1,5\}$" find | grep "^./core\.[0-9]\{1,5\}$"
No comments:
Post a Comment