Skip to content

Instantly share code, notes, and snippets.

@babakhani
Last active March 10, 2021 21:08
Show Gist options
  • Save babakhani/d5915c75c11166d3ba073092f95a5d8a to your computer and use it in GitHub Desktop.
Save babakhani/d5915c75c11166d3ba073092f95a5d8a to your computer and use it in GitHub Desktop.
Useful terminal command for speed up development in terminal
# Quickly Find and Replace Text Across Multiple Files with One Command
perl -pi -w -e 's/SEARCH_FOR/REPLACE_WITH/g;' *.txt
# Find
find ~ -iname "screen*"
find ~ -iname "screen*" | more
# How do I check if I have a 32-bit or a 64-bit OS?
getconf LONG_BIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment