Search Results

Search: Posts Made By: iluvsushi
1,456
Posted By vbe
?? List them from where? and what do you mean...
??
List them from where? and what do you mean by "like below inside my current directory" ?

If your sysadmins do their job properly, that means you can rely on the content in the services file,...
2,188
Posted By DGPickett
First move all the subroutines up front. The...
First move all the subroutines up front. The main code is all broken up.
2,265
Posted By jim mcnamara
ps -ef prints both PID & PPID
ps -ef

prints both PID & PPID
2,589
Posted By DGPickett
see man test or man ksh for [...]. There is -d...
see man test or man ksh for [...]. There is -d for direcotry, -l for link, -L for something else to do with links? A valid path can also be a named pipe, a raw or cooked device, etc. You can also do ...
2,589
Posted By Scrutinizer
-d ---
-d

---
2,820
Posted By methyl
Back to first principles. The commands as...
Back to first principles.

The commands as posted will not produce any output. They will just put concatonated values into the three environment variables $a $b $c . There is a limited size to an...
2,820
Posted By a_programmer
Based on the number of volumes/files on your...
Based on the number of volumes/files on your server, find can take a substantial amount of time to search something from /.

Time one of the find commands separately and multiply that time by 3....
2,820
Posted By jim mcnamara
You cannot have variable[space] = [space] `code...
You cannot have variable[space] = [space] `code here `

Remove all spaces around the =
1,621
Posted By ctsgnb
less scan (do it in one pass) : 2>/dev/null...
less scan (do it in one pass) :
2>/dev/null find / -type f -inum +1 -mtime -30 -print | while read f ; do ls -lc $f ; ls -lu $f ; done
1,621
Posted By ctsgnb
1. make sure you respect the <space> character ...
1. make sure you respect the <space> character
2. make sure you have at least 1 directory that match these conditions and that you have enough authorizations to access this directory
3. i used the...
1,621
Posted By ctsgnb
find / -type f -mtime -30 -exec ls -lc {} \;...
find / -type f -mtime -30 -exec ls -lc {} \; 2>/dev/null
1,763
Posted By Franklin52
Should be: find -mtime -30 -print 2>...
Should be:
find -mtime -30 -print 2> /dev/null
1,763
Posted By Franklin52
No need to use awk or sed, you can redirect the...
No need to use awk or sed, you can redirect the errors to /dev/null:
command 2>/dev/null
Showing results 1 to 13 of 13

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