Questions Tagged With shellhttp://linuxexchange.org/tags/shell/?type=rssquestions tagged <span class="tag">shell</span>enWed, 23 Jun 2010 14:54:09 -0400What is your text editor of choice?http://linuxexchange.org/questions/901/what-is-your-text-editor-of-choice<p>I was curious to know what is the editor of choice for my fellow Linux users. For years it has been a vi vs. emacs debate but it appears there many more. Please reply with your favorite editor. I personally prefer vim.</p>AndyWed, 23 Jun 2010 14:54:09 -0400http://linuxexchange.org/questions/901/what-is-your-text-editor-of-choiceshellviemacsAre there any Change Management Systems (CMS) for Linux?http://linuxexchange.org/questions/869/are-there-any-change-management-systems-cms-for-linux<p>I am curious to find out if there are any Change Management Systems available for Linux (free of course). I'd like to be able to make changes to common files I use but have the ability to "backout" those changes (version control). I have written some various shell scripts that do this in a very simple manner (cp existing file -> append date -> place in a different directory -> diff old/new and save that output) and perhaps that's enough but was hoping folks on here would know of same actual CMS tools out there.</p> <p>Thanks - Andy</p>AndyWed, 16 Jun 2010 19:28:56 -0400http://linuxexchange.org/questions/869/are-there-any-change-management-systems-cms-for-linuxshellbashautomationconfiguration-managementWhat is the most used command in your shell?http://linuxexchange.org/questions/765/what-is-the-most-used-command-in-your-shell<p>We all use the shell on a daily basis and know, what advantages it has.</p> <p>I'd like you to post the most used commands you fired up in your shell.</p> <p>If you use <strong>Bash</strong>, use this code:</p> <pre><code>cut -d\ -f 1 ~/.bash_history | sort | uniq -c | sort -rn | head -n 10 | sed 's/.*/ &amp;/g' </code></pre> <p>If you use <strong>ZSH</strong>, use this code:</p> <pre><code>history 1| awk '{print $2}' | sort | uniq -c | sort -rn | head -n10 </code></pre> <p>My Top 10 on a Subversion server is the following:</p> <pre><code> 135 cd 113 ll 73 vim 59 less 56 ls 50 ps 47 svnadmin 47 df 36 rm 33 top </code></pre> <p>Now post your own!<br> <strong>Note:</strong> Please put 4 spaces in front of every row or click on the "Code" button (labeled with <code>101010</code>). This makes your listing more readable.</p> <p>Inspired by <a href="http://www.reddit.com/r/linux/comments/bmlg3/the_most_used_unix_commands/" rel="nofollow">reddit.com</a>. This question is marked as <img alt="community wiki" src="http://linuxexchange.org/faq">, so I'm not a reputation whore.</p> <p>I learned you can close a shell without typing <code>exit</code>. Just press <kbd>Ctrl</kbd>+<kbd>D</kbd>!</p>guerdaWed, 02 Jun 2010 13:45:57 -0400http://linuxexchange.org/questions/765/what-is-the-most-used-command-in-your-shellshellWhat shells are available on the box ?http://linuxexchange.org/questions/160/what-shells-are-available-on-the-box<p>Hi,</p> <p>Is there a way to determine what shells are available on a Linux box other than trying out <em>/bin/shellname</em> ?</p> <p>Even a workaround would do :)</p> <p>Thanks.</p>Knight SamarMon, 03 May 2010 08:16:53 -0400http://linuxexchange.org/questions/160/what-shells-are-available-on-the-boxshellsystem-administration