You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Random commit viesti
git commit -m "$(w3m whatthecommit.com | head -n 1)"
# Muunna kaikkien kuvien kokoa hakemistossa (imagemagick)
for file in *.png; do convert $file -resize 32x32! 32-$file; done
# Missä tiedostossa lukikaan "jotain"
grep -r "jotain" .
# Search-replace kaikista tiedostoista tästä hakemistosta ja alihakemistoista
find /home/mjt/projekti -type f -print0 | xargs -0 sed -i 's/vasen/oikea/g'
# Oikeudet turvallisemmaksi tässä ja alihakemistoissa
find . -perm 777 -exec chmod 755 {} \;