/* 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 …
Author Archives: jeffrin
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 …
mountpoint
Mountpoint checks if the directory is a mountpoint.
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”
ghostscript
Ghostscript (PostScript and PDF language interpreter and previewer) GPL Ghostscript
dict
dict is a client for the Dictionary Server Protocol (DICT) RFC 2229
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}: …
factor
Print the prime factors of each specified integer NUMBER. Prime factor
factor – factor numbers
Print the prime factors of each specified integer NUMBER. $factor 2 2: 2 $factor 3 3: 3 $factor 4 4: 2 2 $factor 5 5: 5 $factor 6 6: 2 3 $factor 7 7: 7 $factor 8 8: 2 2 2 $factor 9 9: 3 3 $factor 10 10: 2 5 $factor 11 11: 11 …
vim delete command
: d 5 deletes five lines from the current cursor position. Vim Editor