User Tools

Site Tools


linux_command_line_basics

This is an old revision of the document!


Linux Command Line Basics

There are a number of good resources on the web. Here's one of them:

http://linuxcommand.org/index.php

Commands you should know

pwd - print working directory
ls - list files
cd - change directory
less - file pager
file - describes type of a file

File Manipulation

cp - copy 
mv - move (rename)
rm - remove (delete)
mkdir - make directory
rmdir - remove directory

Editing Text

Choose an editor:

nano
vi
emacs

Basic Script

#!/bin/bash
...

Make a script file “executable”:

chmod u+x scriptname
linux_command_line_basics.1537983888.txt.gz · Last modified: 2018/09/26 13:44 by root