Stack Exchange
sign up
|
log in
|
chat
|
meta
|
about
|
faq
Unix & Linux
Questions
Tags
Tour
Users
Ask Question
otokan
less info
network profile
628
reputation
1
6
bio
website
location
Europe
age
visits
member for
6 months
seen
Apr 6 at 22:04
stats
profile views
7
628
reputation
bio
website
visits
member for
6 months
1
6
badges
location
Europe
seen
Apr 6 at 22:04
summary
answers
questions
tags
badges
favorites
bounties
reputation
activity
23
Actions
suggestions
reviews
revisions
comments
badges
posts
accepts
all
Feb
28
answered
How to pass the output of a script to a command like ls without the output being split?
Feb
28
answered
How can I load the right hand pane of vim with a new file in linux?
Jan
5
awarded
Nice Answer
Jan
4
revised
“grep -r foo *” vs “grep -r foo .”
added 209 characters in body
Jan
4
revised
“grep -r foo *” vs “grep -r foo .”
added 240 characters in body
Jan
4
answered
“grep -r foo *” vs “grep -r foo .”
Jan
2
awarded
Supporter
Dec
31
awarded
Enthusiast
Dec
31
awarded
Nice Answer
Dec
30
answered
grep lines starting with “1” in Ubuntu
Dec
27
answered
Disable vi from going to the last visited line upon file opening
Dec
25
awarded
Editor
Dec
25
revised
How to add a line in many files
adding forgotten argument to sed
Dec
25
suggested
suggested edit
on
How to add a line in many files
Dec
18
comment
How to create directory ranging from 1 to nth?
In newer version of bash you can do
mkdir gallery{01..50}
to achieve the same result.
Dec
15
comment
How to view the output of a running process in another bash session?
You can limit output of strace to one syscall:
strace -p 4232 -e write
Dec
6
comment
I want to kill all processes that result from the following command
You don't have to use grep command at all in this case.
Dec
5
comment
I want to kill all processes that result from the following command
You can (and should) get rid of grep in this case:
ps -ef | awk '/vmstat 1/ { print "kill " $2 }' | bash
Dec
5
awarded
Custodian
Dec
5
reviewed
Approve
suggested edit
on
Encrypt word X to /etc/shadow encryption
Unix & Linux Stack Exchange works best with JavaScript enabled