Cari Teks dan Nomor Baris Dengan grep
- Categories:
- console
Untuk mencari teks serta baris ke berapa, jika menggunakan Linux atau Mac OS dapat menggunakan command grep
.
grep -Rn aloha my/directory
grep -Rn "my-css-class" .
grep -Rn "\-\-other-css-class" app/views
Opsi -R
membuat grep mencari secara rekursif terhadap subdirektori, sedangkan opsi -n
akan membuat grep menampilkan nomor baris teks yang dicari.
Recent Posts
C# DbContext ServiceLifeTime
my note about C Sharp ServiceLifeTime
PostgreSQL Index Usage Monitoring
Having too many unused or underused indexes on a table can slow down write and update operations in your PostgreSQL database, making it crucial to regularly identify and manage them for optimal performance.
KAK Labs Newsletter #6 - Staying Safe From Pegasus Spyware
Newsletter #6 - Pegasus, Ruby, PostgreSQL and networkQuality tool
Material Design - Paragraph Spacing
According to Google's Material Design, keep paragraph spacing in the range between .75x and 1.25x of the type size.
Amazon SDK for C# - S3 File Download Methods
Comparison between `TransferUtility.DownloadAsync`, `DownloadSingleFileAsync`, and `GetObjectAsync`.