mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 18:50:34 -05:00
New Post
This commit is contained in:
parent
2fe9ea6dde
commit
27659ab85a
1 changed files with 13 additions and 0 deletions
13
content/blog/launchappsthroughterminal.md
Normal file
13
content/blog/launchappsthroughterminal.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: "Launch Apps through the Terminal"
|
||||
date: 2020-09-26T21:48:09-04:00
|
||||
draft: false
|
||||
tags: []
|
||||
---
|
||||
|
||||
Normally when you launch an application through the terminal, the standard output appears, and closing the terminal closes the application. The `nohup` command allows applications to run regardless of any hangups sent. Combine that with making it a background task, and you have a quick and easy way to launch applications through the terminal.
|
||||
|
||||
```bash
|
||||
nohup application > /dev/null &
|
||||
```
|
||||
|
Loading…
Reference in a new issue