Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sln(8) [linux man page]

SLN(8)							     Linux Programmer's Manual							    SLN(8)

NAME
sln - create symbolic links SYNOPSIS
sln source dest sln filelist DESCRIPTION
The sln program creates symbolic links. Unlike the ln(1) program, it is statically linked. This means that if for some reason the dynamic linker is not working, sln can be used to make symbolic links to dynamic libraries. The command line has two forms. In the first form, it creates dest as a new symbolic link to source. In the second form, filelist is a list of space-separated pathname pairs, and the effect is as if sln was executed once for each line of the file, with the two pathnames as the arguments. The sln program supports no command-line options. SEE ALSO
ln(1), ldconfig(8), ld.so(8) COLOPHON
This page is part of release 3.55 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
2013-02-10 SLN(8)

Check Out this Related Man Page

prj2make(prj2make 1.0)													    prj2make(prj2make 1.0)

NAME
prj2make - Makefile generator from Visual Studio and Sharp Develop solution files. SYNOPSIS
prj2make options file DESCRIPTIOn The prj2make tool will produce Makefiles or NMakefiles from Visual Studio solution files (files ending in .sln or .csproj) or SharpDevelop combine files (files ending in .cmbx or .prjx). This tool is commonly used to compile on Unix source code which has been originally developed with Visual Studio or SharpDevelop. This tool can also be used to convert Visual Studio project files (.sln or .csproj) into Sharp Develop .prjx/.cmbx files, use the `-csproj2prjx' for this. By default prj2make will produce Makefiles suitable to be consumed by Unix Make. If your application needs to target nmake, you can use the option `-isNmake'. OPTIONS
-c , -isCsc Use csc instead of mcs on the generated files. -csproj2prjx Runs in conversion mode, and turns a csproj/sln into a set of prjx/cmbx files. -n , -isNmake Produce makefiles suitable to be used by Nmake. MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-list for details. WEB SITE
Visit: http://www.mono-project.com for details SEE ALSO
mcs(1),mono(1),make(1),mono-config(5) prj2make(prj2make 1.0)
Man Page