Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #107.55K
~200 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for sandip.bhoi

In case anybody is still looking for this . [code=sh] function ReceiveCmd { local Reply="" while IFS= read -srN1 ; do [ "${REPLY}" != "${1}" ] || break Reply+="${REPLY}" done REPLY="${Reply}" } function GetCurPos { echo -n $'\e[6n' ; ReceiveCmd R IFS=';' REPLY=( ${REPLY:2} ) } GetCurPos echo ${REPLY[@]} [/code]

Member Avatar for dethrophes
0
200

The End.