First time here? Checkout the FAQ!
x
+1 vote
2.1k views
asked in Cloud Computing by (116k points)  
Is it possible to take a look at list of all commands written for Apache Hive?
  

1 Answer

0 votes
answered by (116k points)  

Yes, you need to get to your home directory (by running cd ~), and then run the following command:

cat .hivehistory

You can also save it to a file by:

cat .hivehistory > hivehistory.txt
...