Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/askucher/nixar
Improved linux commands
https://github.com/askucher/nixar
linux
Last synced: 5 days ago
JSON representation
Improved linux commands
- Host: GitHub
- URL: https://github.com/askucher/nixar
- Owner: askucher
- Created: 2015-07-30T20:56:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-02T21:14:35.000Z (over 7 years ago)
- Last Synced: 2024-11-07T18:47:41.645Z (6 days ago)
- Topics: linux
- Language: LiveScript
- Homepage: http://askucher.github.io/nixarweb/#/
- Size: 97.7 KB
- Stars: 496
- Watchers: 16
- Forks: 16
- Open Issues: 3
-
Metadata Files:
- Readme: README.ls
Awesome Lists containing this project
README
require \xonom
.service \repo, ->
commands: []
docs: []
.run "#{__dirname}/compiled-commands/*.js"
.service \p, ->
require \prelude-ls
.run (repo, p)->
lines = []
$ = lines~push
$ '# New shell commands'
$ 'Joyable equivalents for existent linux commands'
$ ''
$ '![Nixar](http://content.screencast.com/users/a.stegno/folders/Jing/media/cf29f8c0-b343-4692-9e05-1ff44f37f48d/00000255.png)'
$ ''
$ 'npm install -g nixar'
$ ''
$ '###Commands'
$ ''
repo.commands.for-each (cmd)->
$ "#### #{cmd.name}"
$ "#{cmd.desc}"
console.log lines.join('\n')
require('fs').writeFileSync('README.md', lines.join(\\n), \utf8)