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

1 Answer

0 votes
answered by (115k 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
...