GCP: Go to specific line of code on ssh / linux



This content originally appeared on DEV Community and was authored by Vikas Singh

Jumping to specific line of code while making changes is an important part.

After nano filename.jsx

  1. Press Ctrl + _ (that’s Control + underscore)

  2. Type the line number (e.g., 42)

  3. Press Enter

After less filename.jsx
Just type the line number


This content originally appeared on DEV Community and was authored by Vikas Singh