Search Results

Search: Posts Made By: udaylingamaneni
3,514
Posted By udaylingamaneni
good and quick one to use a soft link unless...
good and quick one to use a soft link unless there is an existing binary already and as long as it will not impact other applications/scripts.
1,628
Posted By udaylingamaneni
1. find / -mtime 1 | tail -1 2. find / -mtime 1...
1. find / -mtime 1 | tail -1
2. find / -mtime 1 | tail -2 > file_name
3. I am not sure abt this
162,931
Posted By udaylingamaneni
Try below > mv `find ./ -maxdepth 1 -atime 10 |...
Try below
> mv `find ./ -maxdepth 1 -atime 10 | tail -1` new_file_name

But this will work for files only in current directory and only if there are files that are accessed in last 10 days(you can...
14,059
Posted By udaylingamaneni
use this script to know the users that have user...
use this script to know the users that have user ID's between 500 and 1000 . If you think there are more number of users, you can increase the number.

#!/bin/bash

count=0;

OIFS=$IFS;
IFS=:...
Showing results 1 to 4 of 4

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