1 example for &
# Run command in background until finished or killed
# Note that you can pass output to any file including /dev/null
# This will run 'find -f * > ~/findlogs.txt' in the background
find -f * > ~/findlogs.txt &
# Run command in background until finished or killed
# Note that you can pass output to any file including /dev/null
# This will run 'find -f * > ~/findlogs.txt' in the background
find -f * > ~/findlogs.txt &