I'm sure there's a reason behind it that I'm not aware of, but I have skipped over this question for a while and came back to it. Now, I can't figure out what's wrong with my code:
Code: Select all
[demo@host-6-113 ~]$ find /home/demo -newer s1 | tee /var/tmp/t1
And I get a lot of entries (and I can't copy/paste from the VNC I'm using).
I've also used the following to exclude hidden files, thinking they might be the problem:
Code: Select all
[demo@host-6-113 ~]$ find /home/demo -newer s1 | grep "/home/demo/[^"."]" | tee /var/tmp/t1
I've also gone in and manually deleted hidden files and files made in questions after this question. Then I tried grep-ing so I only get those that are "sX" files:
Code: Select all
[demo@host-6-113 ~]$ find /home/demo -newer s1 | grep "/home/demo/s.$" | tee /var/tmp/t1
I have yet to find a way to pass this question. Can you help please?