Search Results

Search: Posts Made By: xoops
1,610
Posted By xoops
sed 's/\>.*contig=//;s/]//g' infile
sed 's/\>.*contig=//;s/]//g' infile
4,515
Posted By xoops
sed 's/\( *\)\([0-9][0-9]*$\)/=\2/' inputfile >...
sed 's/\( *\)\([0-9][0-9]*$\)/=\2/' inputfile > outfile
3,941
Posted By xoops
can be done with 1 find command find...
can be done with 1 find command


find /home/somefolder/pids -maxdepth 1 -type f -name "*.pid" -amin +40 -exec rm {} \;
1,010
Posted By xoops
See if you can make use of excel "text to column"...
See if you can make use of excel "text to column" from data menu.
2,457
Posted By xoops
if [ $(echo $cfg | grep log) ] then ...
if [ $(echo $cfg | grep log) ]
then
log="${cfg}"
cfg=""
fi
3,508
Posted By xoops
head -c1000 inputfile > outputfile
head -c1000 inputfile > outputfile
2,511
Posted By xoops
try this one for i in `cat FILE1 ` ; do if...
try this one

for i in `cat FILE1 ` ; do if [ ! -f /xyz/$i ]; then cp $i /xyz/$i ; fi ; done



for i in `cat FILE1 ` ; do if [ ! -f /xyz/$i ]; then cp /asd/$i /xyz/$i ; fi ; done
Showing results 1 to 7 of 7

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