On windows its called mklink hard link
# ln <源文件路径> <链接路径>
ln recipes.txt newrecipes.txt
soft link
# ln -s <源文件路径> <链接路径>
ln -s recipes.txt newrecipes.txt
On windows its called mklink hard link
# ln <源文件路径> <链接路径>
ln recipes.txt newrecipes.txt
soft link
# ln -s <源文件路径> <链接路径>
ln -s recipes.txt newrecipes.txt