入力する:
* * * * * ( /path/to/foo -x )
3 * * * * /full/path/tothing
3 3,2,4 * * * /full/path/tothing4 3
出力:
( /path/to/foo -x )
/full/path/tothing
/full/path/tothing4 3
尋ねる:5番目のスペースまで行を切り取る方法は?
ベストアンサー1
使用cut
:
crontab -l | cut -d' ' -f6-
入力する:
* * * * * ( /path/to/foo -x )
3 * * * * /full/path/tothing
3 3,2,4 * * * /full/path/tothing4 3
出力:
( /path/to/foo -x )
/full/path/tothing
/full/path/tothing4 3
尋ねる:5番目のスペースまで行を切り取る方法は?
使用cut
:
crontab -l | cut -d' ' -f6-