You keep buying board games and you swear you’ll play them some day. But before you go all Marie Kondo your pile, get your collection sorted with some proper organization tools.
— Read on theinventory.com/the-best-ways-to-organize-your-uncontrollable-board-gam-1831876838
Kategori: Uncategorized
Download missing file in bash script
#!/usr/bin/env bash
function downloadIfMissing {
if [ -f $1 ]; then
echo "File $1 exists."
else
wget $2
fi
}
Search for file content in a linux shell
Command: grep -rnw '/path/to/somewhere/' -e 'pattern'
-ror-Ris recursive,-nis line number, and-wstands for match the whole word.-l(lower-case L) can be added to just give the file name of matching files.