mirror of
https://github.com/onceupon/Bash-Oneliner
synced 2024-11-22 20:54:19 +00:00
add others
open PDF file from ssh server
This commit is contained in:
parent
9d2e98bf97
commit
2134776d15
1 changed files with 12 additions and 4 deletions
16
README.md
16
README.md
|
@ -1268,14 +1268,22 @@ head -c 50 file
|
|||
```
|
||||
#####open pictures/images from ssh server
|
||||
```bash
|
||||
ssh -X user_name@ip_address
|
||||
eog picture.png
|
||||
1. ssh -X user_name@ip_address
|
||||
2. apt-get eog
|
||||
3. eog picture.png
|
||||
```
|
||||
|
||||
#####Use gedit on server (GUI editor)
|
||||
```bash
|
||||
ssh -X user_name@ip_address
|
||||
gedit filename.txt
|
||||
1. ssh -X user_name@ip_address
|
||||
2. apt-get gedit
|
||||
3. gedit filename.txt
|
||||
```
|
||||
#####open PDF file from ssh server
|
||||
```bash
|
||||
1. ssh -X user_name@ip_address
|
||||
2. apt-get install evince
|
||||
3. evince filename.pdf
|
||||
```
|
||||
|
||||
##System
|
||||
|
|
Loading…
Reference in a new issue