You are on page 1of 1

Alt0enter1back

Aohenri100
1. get parant of pin
ex: getparentpin.csh sim_pfm_1180slu64kx32_v1c0_SL05V.spi hv
2. getparentInst.csh temp parent.lst
xihvclnup_1 clnup hv vep inh_gndmp inh_vddmp hvclnup m=1
awk '/xihvxver/{print NR}' parenti
* remove first word of line
awk '{$1= ""; print $0}' file > newfile
* replace space by newline
sed -e 's/\s\+/\n/g' file > newfile
* delete empty line:
sed -i '/^$/d' foo
* sort and delete duplicate line
sort -u filename > filename.new

You might also like