linux - Where does the O/P goes when it is redirected to /dev/null -
whenever redirected /dev/null
,
user$ echo "redirecting output null" > /dev/null
where output flushes or if written /dev/null (as man pages says similar writing file), when cleared out?
the null
device reads written it, , discards it.
it's reading file, not storing anywhere, throwing away.
Comments
Post a Comment