• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

commands in linux

ScottyB_

Senior member
Is it possible to make a list of commands in linux so that I don't have to type them all each time I need to do something?
 
Every UNIX shell worth its weight in mt dew has decent scripting capabilities. I recommend ksh, but bash maybe ok for you. "man ksh", or "man bash"

EDIT: Fixed one typo :/
 
Yes, as n0c said, shell scripting is your friend. Or, if one want to same some time on command arguments, you can create yourself some aliases.
 
*nix shells also include TAB completion and a command history. Try typing the first couple letters of a command or program name and hit TAB .. it should either complete the command for you or give you a list of the commands that begin with those letters. To navigate through your bash prompt history you use the arrow keys on your keyboard.
 
Back
Top