Difference between revisions of "HowToLinuxCommands"
From Lost In Wonderlands
(Created page with "= How To Something = '''NeXT Steps''' ''here everything has yet to be done !'' ''coming soon'' : '''''Everything You Always Wanted to Know on git [seldom]... (But Were...") |
(→useful commands) |
||
| Line 16: | Line 16: | ||
== useful commands == | == useful commands == | ||
| + | |||
| + | cd | ||
| + | |||
| + | ls | ||
| + | ls -al | ||
| + | ls -alf | ||
| + | |||
| + | mv | ||
| + | |||
| + | cp | ||
| + | |||
| + | rm | ||
| + | |||
| + | mkdir | ||
| + | |||
| + | touch | ||
| + | |||
| + | ln | ||
| + | |||
| + | grep | ||
| + | |||
| + | awk | ||
| + | |||
| + | sed | ||
| + | |||
| + | cat | ||
| + | |||
| + | less | ||
| + | |||
| + | vi | ||
| + | |||
| + | vim | ||
| + | |||
| + | ssh | ||
| + | |||
| + | scp | ||
| + | |||
| + | |||
| − | == How | + | == How To == |
| + | === find and grep === | ||
| − | + | find . -type f -name "*.cxx" -exec grep "searched_string_in_file" {} \; | |
Revision as of 13:00, 22 May 2019
How To Something
NeXT Steps
here everything has yet to be done !
coming soon :
Everything You Always Wanted to Know on git [seldom]... (But Were Afraid to Ask)
a collection of links of interest
See also
useful commands
cd
ls ls -al ls -alf
mv
cp
rm
mkdir
touch
ln
grep
awk
sed
cat
less
vi
vim
ssh
scp
How To
find and grep
find . -type f -name "*.cxx" -exec grep "searched_string_in_file" {} \;