Search Results

Search: Posts Made By: ShiGua
9,291
Posted By bartus11
Try:perl -n0e '/>NM_13489075[^>]*/;print "$&"'...
Try:perl -n0e '/>NM_13489075[^>]*/;print "$&"' file
6,019
Posted By RudiC
Try this; it works in my linux/bash system:$...
Try this; it works in my linux/bash system:$ while read a; do eval row$((i++))="($a)"; done <file
$ for j in row{0..2}; do for ((i=0;i<4;i++)); do eval col$i[${j/row/}]=\${$j[$i]} ;done; done
$...
2,234
Posted By Don Cragun
Here is a bash (or ksh) script that will do what...
Here is a bash (or ksh) script that will do what you want entirely in shell and using awk:
x=${1:-2222}
odd=1
while read data
do if [ $odd = 1 ] && [ "x$x" = "x${data#????}" ]
then ...
3,398
Posted By DGPickett
You need a laptop/O/S that does not reboot when...
You need a laptop/O/S that does not reboot when you open the lid, just de-hibernates or un-sleeps. My laptops are co owned or too close to diskless to add an Ubuntu boot to see what the power saving...
3,398
Posted By DGPickett
If it is interctive, the susp key as shown on...
If it is interctive, the susp key as shown on stty -a, usually ctrl-Z, takes the job to stoppped. I have not LINUX laptop experience, but I suppose it can sleep or hibernate until you go home and...
3,398
Posted By Adhi
nohup filename If you want run the same...
nohup filename

If you want run the same process in the background. Simply you can use this..
nohup filename &

---------- Post updated at 04:20 PM ---------- Previous update was at 04:15 PM...
Showing results 1 to 6 of 6

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