Search Results

Search: Posts Made By: Reddy482
2,226
Posted By Scrutinizer
Try: ls | sort -nt_ -k3,3 -k2,2
Try:
ls | sort -nt_ -k3,3 -k2,2
1,805
Posted By vikas898
Absolutely Right by scottn
Actually "&" told to shell to do this process in background,
If u want to look this process use following command.

fg 1

If u want to send this back to background use following command.
...
1,805
Posted By Scott
To run it in the background, so you can do other...
To run it in the background, so you can do other things while it's zipping.
25,472
Posted By Scrutinizer
And here is another way: #!/bin/ksh ...
And here is another way:

#!/bin/ksh
oIFS="$IFS"; IFS=, ; set -- $1 ; IFS="$oIFS"
for i in "$@"; do
echo name = $i
done
echo Total Names: $#

$>./test Cooper,"Billy Bob",Trevor,Smithers...
2,867
Posted By rdcwayx
Not test, just give the clue for you. ...
Not test, just give the clue for you.


find Parent -type f > filelist.log
for i in `cat filelist.log`
do
DIR=`dirname $i`
FILENAME=`basename $i`
mkdir -p $DIR/subdir2
cp $i...
1,627
Posted By jim mcnamara
Julian date for '20000101' = 2451545 Julian...
Julian date for '20000101' = 2451545
Julian date for '22000101' = 2524594

That is more than 73000 days.
to check to see if all dates are there try:

wc -l unique.txt


To see if the date...
1,532
Posted By binlib
Check man page or usage document of the command....
Check man page or usage document of the command. It should have option to output the code only (in fact, it should be the default). If not, the person who wrote the program doesn't understand Unix....
Showing results 1 to 7 of 7

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