Command Summary STARTING vi vi filename => edit a file named “filename” vi newfile => create a new file named “newfile” ENTERING TEXT i => insert text left of cursor a => append text right of cursor MOVING THE CURSOR h => left one space j […]
Month: July 2018
How to get the Tablespace details in Oracle
This article helps you to get more information about Tablespace in Oracle along with a few commands which helps in your day to day activity. How to get the list of available Tablespaces SQL> select tablespace_name, sum(bytes)/power(1024,2), sum(maxbytes)/power(1024,2), AUTOEXTENSIBLE from dba_data_files group by tablespace_name, AUTOEXTENSIBLE; This list down all the tablespaces that are available in […]
SVN Commands in Linux
This article helps you to understand various SVN commands and its usage in Linux environment. How To get the location of SVN: $ whereis svnsvn: /opt/CollabNet_Subversion/bin/svn (or) $ which svnsvn: /opt/CollabNet_Subversion/bin/svn How to get the SVN help $ svn helpusage: svn <subcommand> [options] [args]Subversion command-line client, version 1.8.14.Type ‘svn help <subcommand>’ for help on a […]
Most Useful Git Commands
In this article I am sharing a list of most useful git commands which are used in day to day activity in every project. Getting & Creating Projects Command Description git init Initialize a local Git repository git clone ssh://[email protected]/[username]/[repository-name].git Create a local copy of a remote repository Basic Snapshotting Command Description git status […]