Hello,
I am going through a Linux course and was asked to run the find command in the background and it should list all files that have changed in the last 5 days.
I am running the following command, but it ignores the & to background it -
find / -mtime -5 &
I am also trying to suspend the...