Search Results

Search: Posts Made By: patkun
7,707
Posted By patkun
tail +3 infile
tail +3 infile
3,590
Posted By patkun
I don't use awk much .. so you can try this...
I don't use awk much .. so you can try this code below
# !/usr/bin/sh

while read LINE
do

a=`echo $LINE | cut -d " " -f1`
b=`echo $LINE | cut -d " " -f2`
echo "set $a...
4,761
Posted By patkun
If awk seems a complicated topic , then u can try...
If awk seems a complicated topic , then u can try this below code
# !/usr/bin/sh

while read LINE
do
echo $LINE | cut -d " " -f 1 >> file4.txt
done < file.txt

count=`wc -l file4.txt |...
3,923
Posted By patkun
substr takes input arguments as start point and...
substr takes input arguments as start point and number of char to print.
Length option will give u the length of the whole string. Now in the awk statement the number of char is given by length-4 ,...
16,046
Posted By patkun
echo $SHELL .. will let u know which shell u r...
echo $SHELL .. will let u know which shell u r using , if it is not ksh, will give u a command not found
Showing results 1 to 5 of 5

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