Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/programming/unix-linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@
"command": "rm -r dir",
"description": "remove directory dir recursively"
},
{
"command": "rm -r -f dir",
"description": "remove directory dir recursively and forcefully"
},
{
"command": "cp file1 file2",
"description": "copy file1 to file2"
Expand All @@ -69,7 +73,7 @@
},
{
"command": "mv file1 file2",
"description": "move (rename) file1 to file2"
"description": "move file1 to file2 if directory otherwise rename file1 to file2"
},
{
"command": "ln -s file link",
Expand Down Expand Up @@ -101,7 +105,7 @@
},
{
"command": "vim file",
"description": "edit file"
"description": "edit file with vim editor"
},
{
"command": "alias name 'command'",
Expand Down