I have a folder with the following contents. I am wanting to change the symbolic link in a single atomic transaction without deleting it.
drwxr-xr-x 9 root root 4096 Apr 10 13:47 2012-03-19
drwxr-xr-x 9 root root 4096 Apr 10 13:44 2012-04-10
lrwxrwxrwx 1 root root 10 Mar 19 15:28 current -> 2012-03-19
I figured out at one time that the following would do it:
# ln -sf 2012-04-10 current
However, it doesn't take. Any help is greatly appreciated!