1

The osx command: ln -sfh /a/b /c/d

Fails in ubuntu since h is not a valid option

What's the equivalent command options?

Ben Grimm
  • 4,316
  • 2
  • 15
  • 24
user433342
  • 859
  • 1
  • 7
  • 26

1 Answers1

0

-n is used in GNU to prevent dereferencing symlinks

ln -sfn /a/b /c/d
Ben Grimm
  • 4,316
  • 2
  • 15
  • 24