I came across touch's option -B from this resource. According to the resource, by using the -B option of touch alongside reference (-r) option we can achieve the following:
The -B option modifies the timestamps by going back the specified number of seconds, and the -F option modifies the time by going forward the specified number of seconds. For example, the following command would make file7 30 seconds older than file6.
touch -r file6 -B 30 file7
But when I attempted this command, the option seems to be unavailable. The help page also does not mention either the forward (-F) or backward (-B). I get the following error:
touch: invalid option -- 'B'
Try 'touch --help' for more information.
Are these options removed or are there any other ways I can achieve these?