{ "name": "ln", "section": 1, "title": "link files", "synopsis": [ "ln [OPTION]... [OPERAND]..." ], "description": "Bare OS implementation of link files. Full behavior is defined in packages/bare-os-coreutils/src/ln.js.", "options": [ { "flag": "-s, --symbolic", "meaning": "[Issue 7 ln] Create symbolic link." }, { "flag": "-f, --force", "meaning": "[Issue 7 ln] Replace existing destination when supported." }, { "flag": "-r, --relative", "meaning": "[Issue 7 ln] Store relative symlink target when requested." } ], "keywords": [ "ln", "bare-os", "coreutils" ], "examples": [ { "caption": "symlink", "code": "ln -s target name" }, { "caption": "hard link (if supported)", "code": "ln file linkname" } ] }