All public logs
From Wiki.IT-Arts.net
Combined display of all available logs of Wiki.IT-Arts.net. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:05, 9 June 2024 Admin talk contribs created page FIND - Exec (Created page with "Category:Post-It == grep --help == The basic syntax to execute find with exec : <nowiki> find [path] [arguments] -exec [command] {} \;</nowiki> === List Files === <nowiki> find /home/user/ -type f -name *.txt -exec ls -l {} \;</nowiki> === Remove By Size === Files larger than 500 MB : <nowiki> find /home/user/ -size +500M -exec rm {} \;</nowiki> === Remove By Date === Files older than 10 days <nowiki> find /home/user/ -type f -mtime +10 -exec r...")