This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd [/opt/jboss-eap-6.1/modules/system/layers/base] | |
find $PWD -type f -name "*.jar" > /opt/jboss61.txt | |
cd [/opt/jboss-eap-6.4/modules/system/layers/base] | |
find $PWD -type f -name "*.jar" > /opt/jboss64.txt | |
cd /opt | |
grep hibernate-core *.* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.nirsoft.net/utils/product_cd_key_viewer.html | |
http://h30434.www3.hp.com/t5/Notebook-Operating-System-and-Recovery/Windows-Vista-7-and-8-ISO-Image-file-Download-Links/td-p/2954293 | |
sudo tail -c+57 /sys/firmware/acpi/tables/MSDM;echo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
avconv -i videofile.avi -vsync 1 -r 1 -an -y 'videofolder/videoframe%d.bmp' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
systemd-analyze blame | |
1. Grep OR Using \| | |
grep 'pattern1\|pattern2' filename | |
2. Grep OR Using -E | |
grep -E 'pattern1|pattern2' filename | |
3. Grep OR Using egrep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Título: Sua infraestrutura de TIC está preparada para IoT | |
1. Introdução | |
2. | |
- Hardware | |
- Conectividade | |
- Energia | |
- Cloud | |
- Armazenamento |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
uf=( "ac" "al" "am" "ap" "ba" "ce" "df" "es" "go" "ma" "mg" "ms" "mt" "pa" "pb" "pe" "pi" "pr" "rj" "rn" "ro" "rr" "rs" "sc" "se" "sp" "to") | |
partido=( "dem" "novo" "pen" "pc_do_b" "pcb" "pco" "pdt" "phs" "pmdb" "pmn" "pp" "ppl" "pps" "pr" "prb" "pros" "prp" "prtb" "psb" "psc" "psd" "psdb" "psdc" "psl" "psol" "pstu" "pt" "pt_do_b" "ptb" "ptc" "ptn" "pv" "rede" "sd") | |
for i in "${uf[@]}" | |
do | |
mkdir ${i} | |
cd ${i} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
uf=( "ac" "al" "am" "ap" "ba" "ce" "df" "es" "go" "ma" "mg" "ms" "mt" "pa" "pb" "pe" "pi" "pr" "rj" "rn" "ro" "rr" "rs" "sc" "se" "sp" "to") | |
for i in "${uf[@]}" | |
do | |
cd $i | |
unzip -f "*.zip" | |
cd aplic/sead/lista_filiados/uf/ | |
rm leiame.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cat /dev/null > serpro-ce.txt | |
while read line | |
do | |
#echo -e "$line" | |
grep -r --binary-files=text "$line" download/ce >> serpro-ce.txt | |
done < serpro-func-todos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
uf=( "ac" "al" "am" "ap" "ba" "ce" "df" "es" "go" "ma" "mg" "ms" "mt" "pa" "pb" "pe" "pi" "pr" "rj" "rn" "ro" "rr" "rs" "sc" "se" "sp" "to") | |
cd download | |
for i in "${uf[@]}" | |
do | |
cd $i | |
mkdir new |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl http://wttr.in/fortaleza #Weather from terminal | |
melt #video editor | |
lftp | |
wget | |
grep | |
wc | |
curl |