find /opt -type f -size +200M -name \*.mp4
cat /proc/cpuinfo | grep bogomips
lscpu
sudo apt install cpufrequtils -y && cpufreq-info
xxd file1 > file1.hex
xxd file2 > file2.hex
diff file1.hex file2.hex
ffmpeg -i in.mkv -i in.mp3 -c:v copy -c:a aac -map 0:v:0 -map 1:a:0 out.mkv
ffmpeg -i 'in.mp4' -i 'in.mp3' -c:v copy -c:a aac -map 0:v:0 -map 1:a:0 -shortest out.mp4
grep -o -E '[[:alpha:]]+' file.txt | sort | uniq -i -c | sort -rn
grep -o -E '\w+' file.txt | sort -f | uniq -c | sort -rn
sudo setsid mintstick -m format
sudo setsid mintstick -m iso
/db/*.sqlite3
/.env
/.idea
/public/test*.php
*.swp
/test*.php
/*.txt
/vendor
wc -l arquivo.txt
cat arquivo.txt | grep -m 10 . | tail -n 1
gawk 'NR>=2 && NR<=5' arquivo.txt
cat a.txt b.txt | sort | uniq -u
LESS=/usr/bin/lessc
PHP=/usr/bin/php
UGLIFY=/usr/bin/uglifyjs.terser
install: bin/mig.php less/style.less
clear
composer install
composer dump-autoload
$(PHP) bin/mig.php
$(LESS) less/style.less public/css/style.css --clean-css
$(UGLIFY) js/script.js --output public/js/script.js --compress
echo "pronto!"
extract <nome do arquivo>
xdg-mime default smplayer.desktop audio/x-wav
O comando acima irá atualizar o /home/$USER/.config/mimeapps.list
Passo 1) Pegar o id do mouse (do touchpad no caso dos notebooks)
xinput list
Passo 2) Testar se é o id correto
xinput --disable <id>
xinput --enable <id>
Passo 3) Mapear o botão 2 para o botão 1
Coloque o código abaixo no arquivo ~/.profile
xinput --set-button-map <id> 1 1 3 4 5 6 7 8 9 10
parallel --gnu << 'EOF'
date >> out1 && sleep 5
date >> out2 && sleep 5
EOF
Fonte: StackOverwlow
pdftoppm -jpeg -r 300 'file.pdf' dir/p
date && parallel sleep ::: 1 1 1 1 1 1 1 1 1 1 && date
Tempo para rodar o comando acima:
Pra ver a data de modificação de um arquivo:
stat nomeDoArquivo
tar -hcvf arquivo.tar diretório
tar -xf arquivo.tar
sort <(cat lista1 lista2 lista3) | uniq -d
watch -n 1 date
sudo parted --list
tr '[:lower:]' '[:upper:]'
tr '[:upper:]' '[:lower:]'
cut -f1 en-pt.txt > en.txt
cut -f2 en-pt.txt > pt.txt
zip -r nomeDoZip.zip nomeDoDiretorio
unzip nomeDoZip.zip