Awesome_SEO_Writing_Skill

(★ 71)

Share the awesome skills for SEO Writing. All the skills are developed by Flaq AI Team

File Explorer

  • .gitignore
  • LICENSE
  • README.md
  • README_ar.md
  • README_de.md
  • README_es.md
  • README_fr.md
  • README_hi.md
  • README_id.md
  • README_it.md
  • README_ja.md
  • README_ko.md
  • README_nl.md
  • README_pl.md
  • README_pt.md
  • README_ru.md
  • README_th.md
  • README_tr.md
  • README_tw.md
  • README_vi.md
  • README_zh.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

complete

View Details ▼

Get and set argument autocompletion rules of shell commands in Bash.
The specified completions will be invoked when `<Tab>` is pressed in Bash.
See also: `compgen`, `compopt`.

complete -F {{function}} {{command}}

Set arguments of a command to autocomplete through a function (completion response is sent in `$COMPREPLY` variable):

complete -C {{autocomplete_command}} {{command}}

Set arguments of a command to autocomplete through another command (`$1` is the command, `$2` is the argument the cursor is on, and `$3` is the argument preceding the cursor):

complete -b {{command}}

Set arguments of a command to autocomplete to shell builtins:

🔍

node

View Details ▼

Server-side JavaScript platform (Node.js).

node {{path/to/file}}

Run a JavaScript file:

node

Start a REPL (interactive shell):

node --watch {{path/to/file}}

Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):

🔍

task

View Details ▼

To-do list manager.

task add {{description}} due:{{tomorrow}}

Add a new task which is due tomorrow:

task {{task_id}} modify priority:{{H|M|L}}

Update a task's priority:

task {{task_id}} done

Complete a task:

// repository documentation