Вы находитесь на странице: 1из 1

6. How to list the files that are accessed 5 days ago in the current directory?

find -atime 5 -type f

7. How to list the files that were modified 5 days ago in the current directory?

find -mtime 5 -type f

8. How to list the files whose status is changed 5 days ago in the current directory?

find -ctime 5 -type f

9. How to replace the character '/' with ',' in a file?

sed 's/\//,/' < filename

sed 's|/|,|' < filename

10. Write a command to find the number of files in a directory.

ls -l|grep '^-'|wc -l

Вам также может понравиться