Search Results

Search: Posts Made By: Kesavan
1,187
Posted By Kesavan
Hello Arun, the below command works for your...
Hello Arun,

the below command works for your purpose. However keep in mind about the issues pointed out by Peasant.

ls -ltr | grep "Feb 14" | awk '{print $NF}' | xargs -I '{}' cp {}...
3,457
Posted By Kesavan
for finding directories of size bigger than 10k...
for finding directories of size bigger than 10k in current directory and below that.

find . -type d -size +10k | xargs du -sh | sort -rn
6,578
Posted By Kesavan
Grep content between timestamp
-i option is for in place edition without redirection
but i don't get why it is not working for you...
anyway try this one...

#!/bin/sh
sed -n '/[0-9][0-9]\/[0-9][0-9]\/[0-9][0-9][0-9][0-9]/p'...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 07:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy