↧
Answer by 111--- for List files and ignore permissions errors
IO Redirection The problem is not with your script, but is a feature of UNIX IO redirection. Consider, the following command find data/ -size +10G | grep -v 'find:' only the stdout stream is being sent...
View ArticleList files and ignore permissions errors
I need to make a list of files bigger than 10G that will be the ignorefile input for a duply backup. However, I have some files which I don't have permissions to read. I want to ignore those that will...
View Article