Hi,
I've a file with fields sperated by ~, like
1~2~3~4
1~x~y~z
My requirement is remove the first field and create another file rest of the fields like
2~3~4
x~y~z
I don't want to use "cut" command as it would be slow as compare to awk script. Any help would be appreciated.
Thanks.
I've a file with fields sperated by ~, like
1~2~3~4
1~x~y~z
My requirement is remove the first field and create another file rest of the fields like
2~3~4
x~y~z
I don't want to use "cut" command as it would be slow as compare to awk script. Any help would be appreciated.
Thanks.