Skip to content

Instantly share code, notes, and snippets.

@gdemir
Last active April 27, 2016 06:53
Show Gist options
  • Save gdemir/dc7a5df9e9c573d11cb21071f8736c1d to your computer and use it in GitHub Desktop.
Save gdemir/dc7a5df9e9c573d11cb21071f8736c1d to your computer and use it in GitHub Desktop.
Shell ile Yazılmış Birtakım Kısayol İşlemleri
#!/bin/bash
# Çalışma alanı: https://github.com/gdemir/gdemir.github.io/tree/master/_/_posts
# Bulunduğun dizindeki dosyaların içeriklerinde "category: linux" ifadesi geçen dosyaları görüntüle.
for i in *;
do
grep "category: linux" $i && echo $i;
done
# Bulunduğun dizindeki dosyalardan ad olarak "lemp" geçen tüm dosyaları göster.
find . -name "*lemp*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment