option.c (65acff377ac302e767765c72d39d1552c54109aa) | option.c (4a0193d39e1d7c37c38c26a209497cde74c35bcd) |
---|---|
1/*- 2 * Copyright (c) 1990, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Cimarron D. Taylor of the University of California, Berkeley. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 98 unchanged lines hidden (view full) --- 107 { "-newercm", c_newer, f_newer, F_TIME_C }, 108 { "-newerct", c_newer, f_newer, F_TIME_C | F_TIME2_T }, 109 { "-newerma", c_newer, f_newer, F_TIME2_A }, 110 { "-newermc", c_newer, f_newer, F_TIME2_C }, 111 { "-newermm", c_newer, f_newer, 0 }, 112 { "-newermt", c_newer, f_newer, F_TIME2_T }, 113 { "-nogroup", c_nogroup, f_nogroup, 0 }, 114 { "-nouser", c_nouser, f_nouser, 0 }, | 1/*- 2 * Copyright (c) 1990, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Cimarron D. Taylor of the University of California, Berkeley. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 98 unchanged lines hidden (view full) --- 107 { "-newercm", c_newer, f_newer, F_TIME_C }, 108 { "-newerct", c_newer, f_newer, F_TIME_C | F_TIME2_T }, 109 { "-newerma", c_newer, f_newer, F_TIME2_A }, 110 { "-newermc", c_newer, f_newer, F_TIME2_C }, 111 { "-newermm", c_newer, f_newer, 0 }, 112 { "-newermt", c_newer, f_newer, F_TIME2_T }, 113 { "-nogroup", c_nogroup, f_nogroup, 0 }, 114 { "-nouser", c_nouser, f_nouser, 0 }, |
115 { "-not", c_simple, f_not, 0 }, |
|
115 { "-o", c_simple, f_or, 0 }, 116 { "-ok", c_exec, f_exec, F_NEEDOK }, 117 { "-okdir", c_exec, f_exec, F_NEEDOK | F_EXECDIR }, 118 { "-or", c_simple, f_or, 0 }, 119 { "-path", c_name, f_path, 0 }, 120 { "-perm", c_perm, f_perm, 0 }, 121 { "-print", c_print, f_print, 0 }, 122 { "-print0", c_print, f_print0, 0 }, --- 52 unchanged lines hidden --- | 116 { "-o", c_simple, f_or, 0 }, 117 { "-ok", c_exec, f_exec, F_NEEDOK }, 118 { "-okdir", c_exec, f_exec, F_NEEDOK | F_EXECDIR }, 119 { "-or", c_simple, f_or, 0 }, 120 { "-path", c_name, f_path, 0 }, 121 { "-perm", c_perm, f_perm, 0 }, 122 { "-print", c_print, f_print, 0 }, 123 { "-print0", c_print, f_print0, 0 }, --- 52 unchanged lines hidden --- |