Skip to content

Instantly share code, notes, and snippets.

@sylr
Forked from mathieue/command-line.sh
Created September 7, 2010 09:02
Show Gist options
  • Save sylr/568060 to your computer and use it in GitHub Desktop.
Save sylr/568060 to your computer and use it in GitHub Desktop.
# command line can be amazing and so simple ( just a terminal! ) at the same time
# Show apps that use internet connection at the moment
lsof -P -i -n
# all parameters from latest command
!*
#edit current command line in your editor
<ctrl-x> <ctrl-e>
# Get all links of a website
lynx -dump http://www.domain.com | awk '/http/{print $2}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment