Last active
April 27, 2016 06:53
-
-
Save gdemir/dc7a5df9e9c573d11cb21071f8736c1d to your computer and use it in GitHub Desktop.
Shell ile Yazılmış Birtakım Kısayol İşlemleri
This file contains 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 | |
# Ç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