Will nohup.out consume space / make the server slow if a shell is allowed to run in infinite loop in server using the command: "nohup ./shell & > nohup.out"
I had written a small program in shell script that will run in infinite loop, (since I don't have privilege to add my script in crontab) and the output of the same is of 4 lines which is to be thrown into nohup.out after every 4 hours. Now my question is if the program keeps running in background with help of nohup command as I typed earlier then will the nohup.out file size keep increasing into a huge size with time and if in that case it would affect server by making it slow or something. Or will the nohup.out file constantly get archived for the old data and the size will get restricted on its own.
Thanks, to the viewer of my question and to the person who will guide me in this scenario.