Search Results

Search: Posts Made By: a20786
1,453
Posted By a20786
sed...
sed 's/\(........\).............../\14444444444444444/' file.txt >fltmp
mv fltmp file.txt
3,197
Posted By a20786
I assume you are connecting through Windows. So...
I assume you are connecting through Windows. So during your first login, prompt is of windows which generally displays the passwords in * from.
Once you are logged into UNIX (archlinux), stty...
4,131
Posted By a20786
sed 's/[0-9]{1,}(/(/g' inputfilename One...
sed 's/[0-9]{1,}(/(/g' inputfilename


One way! Will search for a string of numbers followed by a '(' and then will replace it with '('.
3,321
Posted By a20786
line=13 sed -n ''$line'p' infile Note:...
line=13
sed -n ''$line'p' infile


Note: these are two single quotes followed by a $ and then word line


tmp>wc -l austa1106.002
3079 austa1106.002
tmp>sed -n '13 p' austa1106.002...
9,488
Posted By a20786
replace
awk '{ gsub( / /,"3M8");print }' yourfilename
7,313
Posted By a20786
Try This: find . -name "*.cer" -exec...
Try This:


find . -name "*.cer" -exec ksh -c 'echo -n $1" ";keytool -v -list -printcert -file $1' {} {} \; | grep -i "Aug 03"

p.s. Please replace 'ksh' with whatever shell you are using.
26,034
Posted By a20786
Find with Pipe
Try this

find . -type d -name somedirname -exec ksh -c 'echo -n $1" ";ls -ltr $1|wc -l' {} {} \;


This will serach for all directories from current direcotry and will give count of number...
Showing results 1 to 7 of 7

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