/* 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 …
Monthly Archives: January 2010
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
Example of split – split a file into pieces
$split -C 3 split-ex.txt $ls xa xaa xab xac xad xae xaf xag xah xai xaj $cat xab 2 $cat xac 3 $cat xaj 0 $cat xai 9 $cat xaa 1 $cat split-ex.txt 1 2 3 4 5 6 7 8 9 0 $rm xa xaa xab xac xad xae xaf xag xah xai xaj …
Continue reading “Example of split – split a file into pieces”
split
split – split a file into pieces.
code related to library libsrcinst
/* Find the length of STRING + 1, but scan at most MAXLEN bytes. Copyright (C) 2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 3, or (at …
code library /libsrcinst-2.5
/* Find the length of STRING + 1, but scan at most MAXLEN bytes. Copyright (C) 2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 3, or (at …
mountpoint – see if a directory is a mountpoint
Mountpoint checks if the directory is a mountpoint. $mountpoint / / is a mountpoint $echo $? 0 $mountpoint /dev/ /dev/ is a mountpoint $echo $? 0 $mountpoint /media/ /media/ is not a mountpoint $echo $? 1 $mountpoint /store/ /store/ is not a mountpoint $echo $? 1 $mountpoint /etc/ /etc/ is not a mountpoint $echo $? …
Continue reading “mountpoint – see if a directory is a mountpoint”
mountpoint
Mountpoint checks if the directory is a mountpoint.
ghostscript
Ghostscript (PostScript and PDF language interpreter and previewer) GPL Ghostscript
dict – DICT Protocol Client
dict is a client for the Dictionary Server Protocol (DICT) RFC 2229 $dict ls 2 definitions found From V.E.R.A. — Virtual Entity of Relevant Acronyms (January 2014) [vera]: LS LAN Server (IBM) From The Free On-line Dictionary of Computing (20 July 2014) [foldoc]: ls 1. The {Unix} command for listing a {directory}. {Unix manual page}: …