Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 847 Bytes

bash.md

File metadata and controls

44 lines (37 loc) · 847 Bytes
  • Compress folder

tar -zvfc archive_name.tar.gz directory_name
  • -z: Compress archive using gzip program
  • -v: Verbose i.e display progress while creating archive
  • -f: Archive file name
  • -c: Create archive

  • Uncompress folder

tar –zvfx archive_name.tar.gz
  • -z: Compress archive using gzip program
  • -v: Verbose i.e display progress while creating archive
  • -f: Archive file name
  • -x: Extract to disk from the archive
  • Timestamp convinient for file name format

date +%F_%T
  • Set default rvm ruby version

rvm --default use 2.6.5
  • Save file in remote server

cat dump.sql | curl -F 'f:1=<-' ix.io
  • MacOS copy to clipboard from terminal

pbcopy < file.txt
  • Fix ^M character when pressing enter

stty sane