Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bukowa/questions

shell / linux / windows questions that I ask myself over and over again
https://github.com/bukowa/questions

linux questions shell unix windows

Last synced: 8 days ago
JSON representation

shell / linux / windows questions that I ask myself over and over again

Awesome Lists containing this project

README

        

1. How to make ZSH the default shell?
```shell
chsh -s $(which zsh)
```
2. How can I view all shell scripts executed when /bin/sh starts ?
```shell
/bin/sh -lixc exit 2>&1
```
3. How can i view all files that shell sources when it starts?
```shell
/bin/bash -lixc exit 2>&1 | sed -n 's/^+* \(source\|\.\) //p'
```