Skip to content

Instantly share code, notes, and snippets.

@semihozkoroglu
Created July 14, 2013 15:01
Show Gist options
  • Save semihozkoroglu/5994546 to your computer and use it in GitHub Desktop.
Save semihozkoroglu/5994546 to your computer and use it in GitHub Desktop.
Dosyaların oluşturulma zamanını bulur
#!/bin/sh
ls -lc | awk '
BEGIN {
FS=" "
print "basladik"
}
{
print "Gün: "$6" --- Ay: "$7" --- Saat: "$8" --- DosyaAdi: "$9""
}
END {
print "bitti"
} '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment