Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
fuss:sh [2019/04/27 18:39] – [Detach, Background and Re-Attach a Process] officefuss:sh [2020/02/14 17:12] – [Copyright] office
Line 14: Line 14:
 <code bash> <code bash>
 ########################################################################### ###########################################################################
-##  Copyright (C) Wizardry and Steamworks 2018 - License: GNU GPLv3      ##+##  Copyright (C) Wizardry and Steamworks 2019 - License: GNU GPLv3      ##
 ##  Please see: http://www.gnu.org/licenses/gpl.html for legal details,  ## ##  Please see: http://www.gnu.org/licenses/gpl.html for legal details,  ##
 ##  rights of fair usage, the disclaimer and warranty conditions.        ## ##  rights of fair usage, the disclaimer and warranty conditions.        ##
Line 790: Line 790:
 echo 'AGsg4SKKs74s62#' | sed 's/./&\n/g' | shuf | tr -d "\n" echo 'AGsg4SKKs74s62#' | sed 's/./&\n/g' | shuf | tr -d "\n"
 </code> </code>
 +
 +====== Generate Random Numbers in Range using awk ======
 +
 +<code bash>
 +awk -v min=X -v max=Y 'BEGIN{srand(); print int(min+rand()*(max-min+1))}'
 +</code>
 +where:
 +  * ''X'' is the low number,
 +  * ''Y'' is the high number
  

fuss/sh.txt · Last modified: 2024/05/01 00:10 by office

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.