Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bukowa/questions
- Owner: bukowa
- Created: 2024-06-18T20:01:13.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-25T22:42:02.000Z (5 months ago)
- Last Synced: 2024-06-25T23:40:53.699Z (5 months ago)
- Topics: linux, questions, shell, unix, windows
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'
```