[bash]$ echo {0..9} 0 1 2 3 4 5 6 7 8 9[/bash] [bash]$ echo b{a,e,i,o,u} ba be bi bo bu [/bash] [bash]$ echo x{0..9}y…
[bash]$ echo {0..9} 0 1 2 3 4 5 6 7 8 9[/bash] [bash]$ echo b{a,e,i,o,u} ba be bi bo bu [/bash] [bash]$ echo x{0..9}y…
“Baste a quem baste o que lhe basta O bastante de lhe bastar! A vida é breve, a alma é vasta; Ter é tardar.” Fernando…
Audiobooks and podcasts are a great option to listen during flights, commuting, or doing sport activities. LibriVox – Acoustical liberation of books in the public…
sudo find /proc -maxdepth 2 -name maps -exec grep -HE ‘\(deleted\)’ {} \; | cut -d/ -f3 | sort -u | xargs –no-run-if-empty ps Looking…
Let this interactive.sh be the interactive program: [bash]#!/bin/sh read input1 read input2 echo $input1 $input2 [/bash] This is a script feed.sh (in the same directoty)…
x = 0.999… 10x = 9.999… 10x=9+x 9x=9 x=1 0.999…=1
“and I know too well that these arguments from probabilities are impostors, and unless great caution is observed in the use of them they are…
Um bom motivo pra tomar uma hoje: há exatos 80 anos atrás era descriminalizado o consumo de álcool nos Estados Unidos. É bem verdade que…
Some ASCII/ANSI/Shift_JIS/Unicode art of Jeep Wranglers. They are easy to modify and introduce your own customizations. These I found on the web: __________ | |…
[bash]#!/bin/sh HOST="silveiraneto.net" if ping -c 1 $HOST > /dev/null then echo your command fi [/bash] replace silveiraneto.net for your desired hostname or ip ping sends…