I\'m debugging a shell script and trying to find out the task performed by the following command:
sed -i \'1,+999d\' /home/org_user/data.txt
I
Some implementations of sed do not support the -i option. What it does can be simulated by
sed
-i
sed -e '...' file > tmp mv tmp file