[latex] File \;\;\; (z) \;\;\; directory \;\;\; (x,y) \\ (x1,y1,z1) \; (x2,y2,z2) \\ source \; directory \; and \; file \; (x1,y1,z1) \\ destination \; directory \; and \; file \; (x2,y2,z2) \\ A \;\; function \;\; \ f \ (x1,y1,z1) \;\; \longrightarrow \;\; (x2,y2,z2) [/latex]
Category Archives: Uncategorized
average finder
#include <stdio.h> main() { float real,user,sys,addition,entry,average; float entries; int i; addition=0; printf(“\n Entries\n”); scanf(“%f”,&entries); for (i=0;i<entries;i++) { printf("\n Entry\n"); scanf("%f",&entry); addition=addition+entry; } average=addition/entries; printf ("\nAverage Equals %f",average); }
sourceinstall tune.1
1. libX11-1.1.5 2. windowswmproto-1.0.3 3. libWindowsWM-1.0.0 4. xvidcap-1.1.7 5. libXmu-1.0.4 6. libXext-1.0.4 7. libXt-1.0.5 Average Equals 11.868286 seconds [system time]
free.c
/* Work around incompatibility on older systems where free (NULL) fails. Copyright (C) 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later …
flock [-sxon] [-w timeout] lockfile [-c] command…
http://en.wikipedia.org/wiki/File_locking#Linux http://www.thinkage.ca/english/gcos/expl/c/lib/fileno.html
Create the DIRECTORY(ies), if they do not already exist
source code /* On some systems, mkdir (“foo/”, 0700) fails because of the trailing slash. On those systems, this wrapper removes the trailing slash. Copyright (C) 2001, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published …
Continue reading “Create the DIRECTORY(ies), if they do not already exist”
mkdir.c
/* On some systems, mkdir (“foo/”, 0700) fails because of the trailing slash. On those systems, this wrapper removes the trailing slash. Copyright (C) 2001, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the …
times
times Print the accumulated user and system times for the shell and for processes run from the shell. The return status is 0. ftp://ftp.cwru.edu/pub/bash/bash-4.1.tar.gz
ghostscript
Ghostscript (PostScript and PDF language interpreter and previewer) GPL Ghostscript
vim delete command
: d 5 deletes five lines from the current cursor position. Vim Editor