y*r
2 楼
眼睛红,痒,有异物感,夜间尤其严重,买的非处方抗过敏眼药水,没用。谢谢!
v*r
3 楼
ps -ef | grep "command" | grep -v grep
以上命令的 exit status ($?) 在match到 “command" 的时候是 0,在没有 match 的
时候是 1.
在没有 match 的时候,觉得 exit status 也应该是由 ”grep -v grep“ 决定的呀
, 为什么会是 1 哪?
以上命令的 exit status ($?) 在match到 “command" 的时候是 0,在没有 match 的
时候是 1.
在没有 match 的时候,觉得 exit status 也应该是由 ”grep -v grep“ 决定的呀
, 为什么会是 1 哪?
u*k
4 楼
请问一下。。。 我的朋友打餐馆的。。 收入是现金。怎么报税?
在纽约的。。 请转纽约版 谢谢
在纽约的。。 请转纽约版 谢谢
B*y
6 楼
我医生的处方药:
Lotemax ophthalmic suspension 0.5%
Pataday Eye Drops
很有效的,不过很贵,一瓶大概$100多。看你的保险能出多少了,我自己一瓶也要出$
35
Lotemax ophthalmic suspension 0.5%
Pataday Eye Drops
很有效的,不过很贵,一瓶大概$100多。看你的保险能出多少了,我自己一瓶也要出$
35
h*c
7 楼
echo "aa"|grep -v "aa";echo $?
1
Anything wrong?
1
Anything wrong?
u*k
8 楼
ding
d*z
9 楼
bso
D*t
10 楼
OTC anti-histamine eye drop: Alaway, Zaditor
I*e
12 楼
ask the employer
o*5
13 楼
公司出,所以不在乎了
h*c
14 楼
true;echo $?
0
false;echo $?
1
echo "aa"|grep -v "aa";echo $?
1
echo "aa"|grep -v "bb";echo $?
aa
0
I don't think anything strange here."aa" not match -v "aa", so return false,
"aa" match -v "bb" so return true.
0
false;echo $?
1
echo "aa"|grep -v "aa";echo $?
1
echo "aa"|grep -v "bb";echo $?
aa
0
I don't think anything strange here."aa" not match -v "aa", so return false,
"aa" match -v "bb" so return true.
v*r
16 楼
主要是想搞清为什么这两个 cases 下, $? 会不同
{ echo "aa"; } | grep -v "aa" ; echo $?
{ echo "aa"; echo "bb"; } | grep -v "aa" ; echo $?
我这么理解对不对?
grep -v 没 output, set $? to 1
grep -v 有 output, set $? to 0
false,
【在 h*******c 的大作中提到】
: true;echo $?
: 0
: false;echo $?
: 1
: echo "aa"|grep -v "aa";echo $?
: 1
: echo "aa"|grep -v "bb";echo $?
: aa
: 0
: I don't think anything strange here."aa" not match -v "aa", so return false,
{ echo "aa"; } | grep -v "aa" ; echo $?
{ echo "aa"; echo "bb"; } | grep -v "aa" ; echo $?
我这么理解对不对?
grep -v 没 output, set $? to 1
grep -v 有 output, set $? to 0
false,
【在 h*******c 的大作中提到】
: true;echo $?
: 0
: false;echo $?
: 1
: echo "aa"|grep -v "aa";echo $?
: 1
: echo "aa"|grep -v "bb";echo $?
: aa
: 0
: I don't think anything strange here."aa" not match -v "aa", so return false,
g*n
17 楼
为啥要报税啊?
c*t
18 楼
$ man 1 grep
EXIT STATUS
Normally, the exit status is 0 if selected lines are found and
1
otherwise. But the exit status is 2 if an error occurred, unless
the
-q or --quiet or --silent option is used and a selected line is
found.
Note, however, that POSIX only mandates, for programs such as
grep,
cmp, and diff, that the exit status in case of error be greater than
1;
it is therefore advisable, for the sake of portability, to use
logic
【在 v*****r 的大作中提到】
: 主要是想搞清为什么这两个 cases 下, $? 会不同
: { echo "aa"; } | grep -v "aa" ; echo $?
: { echo "aa"; echo "bb"; } | grep -v "aa" ; echo $?
: 我这么理解对不对?
: grep -v 没 output, set $? to 1
: grep -v 有 output, set $? to 0
:
: false,
EXIT STATUS
Normally, the exit status is 0 if selected lines are found and
1
otherwise. But the exit status is 2 if an error occurred, unless
the
-q or --quiet or --silent option is used and a selected line is
found.
Note, however, that POSIX only mandates, for programs such as
grep,
cmp, and diff, that the exit status in case of error be greater than
1;
it is therefore advisable, for the sake of portability, to use
logic
【在 v*****r 的大作中提到】
: 主要是想搞清为什么这两个 cases 下, $? 会不同
: { echo "aa"; } | grep -v "aa" ; echo $?
: { echo "aa"; echo "bb"; } | grep -v "aa" ; echo $?
: 我这么理解对不对?
: grep -v 没 output, set $? to 1
: grep -v 有 output, set $? to 0
:
: false,
c*a
19 楼
挣Social Security Benefit
v*r
20 楼
你没看清我问的问题: grep -v 是根据什么设 exit status 的? Manual 里没提到。
从以下这两个 commands 的对比来看,似乎只能是根据 grep -v 后还有没有 line(s)
left for stdout 来决定 exit status 的value了。
{ echo "aa"; } | grep -v "aa" ; echo $?
{ echo "aa"; echo "bb"; } | grep -v "aa" ; echo $?
有时间俺会 check out grep 的 source code 来 confirm 一下。
and
【在 c*******t 的大作中提到】
: $ man 1 grep
: EXIT STATUS
: Normally, the exit status is 0 if selected lines are found and
: 1
: otherwise. But the exit status is 2 if an error occurred, unless
: the
: -q or --quiet or --silent option is used and a selected line is
: found.
: Note, however, that POSIX only mandates, for programs such as
: grep,
从以下这两个 commands 的对比来看,似乎只能是根据 grep -v 后还有没有 line(s)
left for stdout 来决定 exit status 的value了。
{ echo "aa"; } | grep -v "aa" ; echo $?
{ echo "aa"; echo "bb"; } | grep -v "aa" ; echo $?
有时间俺会 check out grep 的 source code 来 confirm 一下。
and
【在 c*******t 的大作中提到】
: $ man 1 grep
: EXIT STATUS
: Normally, the exit status is 0 if selected lines are found and
: 1
: otherwise. But the exit status is 2 if an error occurred, unless
: the
: -q or --quiet or --silent option is used and a selected line is
: found.
: Note, however, that POSIX only mandates, for programs such as
: grep,
p*z
21 楼
cash income
do schedule C
do schedule C
j*a
22 楼
你要这么想 grep有输出就是0 没有就是1
grep aa和grep -v aa只是形式是这么做的
要是改为 grep "aa" 和 grep "![aa]"什么的 这就好理解了 别太在意那个-v
)
【在 v*****r 的大作中提到】
: 你没看清我问的问题: grep -v 是根据什么设 exit status 的? Manual 里没提到。
: 从以下这两个 commands 的对比来看,似乎只能是根据 grep -v 后还有没有 line(s)
: left for stdout 来决定 exit status 的value了。
: { echo "aa"; } | grep -v "aa" ; echo $?
: { echo "aa"; echo "bb"; } | grep -v "aa" ; echo $?
: 有时间俺会 check out grep 的 source code 来 confirm 一下。
:
: and
grep aa和grep -v aa只是形式是这么做的
要是改为 grep "aa" 和 grep "![aa]"什么的 这就好理解了 别太在意那个-v
)
【在 v*****r 的大作中提到】
: 你没看清我问的问题: grep -v 是根据什么设 exit status 的? Manual 里没提到。
: 从以下这两个 commands 的对比来看,似乎只能是根据 grep -v 后还有没有 line(s)
: left for stdout 来决定 exit status 的value了。
: { echo "aa"; } | grep -v "aa" ; echo $?
: { echo "aa"; echo "bb"; } | grep -v "aa" ; echo $?
: 有时间俺会 check out grep 的 source code 来 confirm 一下。
:
: and
g*n
23 楼
只能当self-employ给重税了。。。
S*u
24 楼
如果employee没有报这部分税,你的朋友就默认不报,不然就等同间接向税务局揭发老
板,schedule C的话也要向老班说一下,让出1099比较好,不过餐馆行业出1099是不太
正常的。
想积分可以直接向老板说,他们会给报的,一年收入六千就能积四分了。
板,schedule C的话也要向老班说一下,让出1099比较好,不过餐馆行业出1099是不太
正常的。
想积分可以直接向老板说,他们会给报的,一年收入六千就能积四分了。
相关阅读
湾区工作机会,要FP&A背景的诚心请教选校: st johns VS hofstra请教deloitte的referral的问题今天公司let go了两个人找工作,看experience要求less than 1 yearStaff Accountant I Position求助,自己的5000美金凭啥充公阿!!! (转载)四月三号审计归来-第三次考请教prevailing wage加州 berkeley extension的会计证书课程能算在CPA考试24会计学分要求内么?Career path 问题有人最近考FAR.....考完cali的cpa exam,工作经验一定要是public accy firm才行吗?四大之一的OFFER 但是上班时间确实毕业后八个月 怎么办?孕妇考生关于加州CPA考试的几个问题请大家推荐一个评估成绩单的机构吧。能在 authoritative literature里用CTRL+F吗大家都修几门课?有没有人知道online 和 campus课程的区别请教:wiley test bank题是无限多的吗??休士顿工作机会-Accounting Manager