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是不太
正常的。
想积分可以直接向老板说,他们会给报的,一年收入六千就能积四分了。
相关阅读
how to join in cpa club面试应该问对方什么问题?有人考过或正在考加州ethic考试吗?跪求互助!PA 州,申请CPA licence不用考ethic吗?感觉Tax就业面很窄想修会计,请问会计Emph in practice 和Emph in taxation 这两个有什么区别?谢谢!关于OPT申请四大求助:事务所跟partner面试的时候,会被问到什么问题?7月30日FAR归来,同征AUD考友有没有最近刚考完AUD的?跪求中英双语版BECKER AUD做tax是不是绿卡比较好办?求助大家:这个工作我要怎么开始?没有工作经验可以考CPA吗来统计一下,考完CPA的童学们都再做什么?关于找volunteer,entry-level职位去中国CPA小所有多惨?[For Sale] BECKER CPA 教材 2011 Version请问本科国内法律,LLM in taxation 能考CPA吗?BEC考完,这样的感觉,还有戏么?