serenity/Userland
Ben Sloane 9687f1801b tail: Default tail behavior with no arguments (#209)
Make tail assume you wanted 10 lines of output if no -n option was provided.
2019-06-06 20:28:58 +02:00
..
.gitignore Userland: Implement recursive rm 2019-06-03 20:16:00 +02:00
basename.cpp Userland: Add a /bin/basename program. 2019-04-15 13:57:09 +02:00
cat.cpp cat: Fix some oversights in error handling. 2019-06-06 11:00:48 +02:00
chmod.cpp Userland: Fix two compiler warnings. 2019-02-22 10:50:59 +01:00
chown.cpp Add chown() syscall and a simple /bin/chown program. 2019-02-27 12:32:53 +01:00
clear.cpp Make /bin/clear work again. 2018-11-10 00:56:10 +01:00
cp.cpp Kernel: Add Inode::truncate(size). 2019-03-27 16:42:30 +01:00
crash.cpp Userland: Add a helpful little program for provoking different crashes. 2019-05-26 02:35:25 +02:00
date.cpp date: Add "-u" argument for printing current Unix timestamp. 2019-05-04 16:50:36 +02:00
df.cpp More moving towards using signed types. 2019-02-25 22:06:55 +01:00
dmesg.cpp Userland: Use CFile in dmesg 2019-06-02 12:55:51 +02:00
echo.cpp Userland: Add a simple /bin/echo program. 2019-04-25 04:42:09 +02:00
env.cpp Kernel: Pass process arguments directly on the stack. 2019-02-22 01:55:22 +01:00
false.cpp Build LibC and Userland with clang as well. 2018-11-09 14:29:00 +01:00
fgrep.cpp fgrep: Don't repeat old incoming data if fgets() failed. 2019-04-25 14:07:17 +02:00
guitest2.cpp LibGUI: Make GCheckBox inherit from GAbstractButton. 2019-05-24 17:11:42 +02:00
head.cpp Userland: Improve head program 2019-06-01 14:48:03 +02:00
host.cpp LookupServer+LibC: Add support for reverse DNS lookups via gethostbyaddr(). 2019-06-06 05:35:03 +02:00
hostname.cpp Fix all current build warnings in the userland. 2018-11-09 10:19:33 +01:00
id.cpp Userland: Fix extra unused printf() argument warning. 2019-02-22 10:32:17 +01:00
kill.cpp Replace various copies of parse_uint(String) with String::to_uint(). 2019-05-08 19:21:51 +02:00
killall.cpp Added CProcessStatisticsReader to avoid having to parse /proc/all (#35) 2019-05-16 18:47:47 +02:00
ln.cpp LibCore: Move AK/ArgsParser to LibCore/CArgsParser 2019-05-17 15:49:37 +02:00
ls.cpp ls: Show user name and group name if available. (#151) 2019-06-01 13:23:35 +02:00
Makefile Include Makefile.common in all other Makefiles. 2019-04-21 04:09:39 +02:00
mkdir.cpp Finally hook up the mkdir code to a syscall. 2018-11-18 15:02:16 +01:00
mknod.cpp Kernel+Userland: Implement mknod() syscall and add a /bin/mknod program. 2019-05-03 22:59:58 +02:00
mm.cpp Userland: Use CFile in mm 2019-06-02 12:55:51 +02:00
more.cpp Add a simple /bin/more. 2018-12-21 02:42:30 +01:00
mv.cpp Kernel+Userland: Add the rename() syscall along with a basic /bin/mv. 2019-04-07 23:35:26 +02:00
pape.cpp LibCore: Add CDirIterator, and use it in everything rather than readdir 2019-05-27 15:27:23 +02:00
pidof.cpp LibCore: Move AK/ArgsParser to LibCore/CArgsParser 2019-05-17 15:49:37 +02:00
ping.cpp LibC: Time-related POSIX compliance fixes. 2019-03-27 01:31:53 +01:00
ps.cpp Userland: Use CFile in ps 2019-06-02 12:55:51 +02:00
qs.cpp QuickShow: Fill the window with white if the opened image has alpha. 2019-03-24 03:07:00 +01:00
rm.cpp Userland: Implement recursive rm 2019-06-03 20:16:00 +02:00
rmdir.cpp Add support for removing directories. 2019-01-28 04:16:01 +01:00
sleep.cpp Replace various copies of parse_uint(String) with String::to_uint(). 2019-05-08 19:21:51 +02:00
sort.cpp Userland: Add a simple /bin/sort program. 2019-04-26 00:53:57 +02:00
stat.cpp Userland: Add a simple /bin/stat program. 2019-02-27 21:45:06 +01:00
strace.cpp strace: Allow "strace command" to trace a process from start to finish. 2019-05-02 15:51:39 +02:00
su.cpp Userland: Minor tweaks in /bin/su 2019-02-21 23:49:16 +01:00
sync.cpp Add sync() syscall and a /bin/sync. 2018-12-20 00:39:29 +01:00
sysctl.cpp AK: Add implicit String -> StringView conversion 2019-06-02 12:55:51 +02:00
tail.cpp tail: Default tail behavior with no arguments (#209) 2019-06-06 20:28:58 +02:00
tc.cpp LibC: inet_pton() should return 1 on success, 0 or -1 on failure. 2019-06-06 05:25:18 +02:00
tee.cpp Userland: Add tee command (#166) 2019-06-02 12:45:17 +02:00
top.cpp Userland: Use AK::quick_sort() in /bin/top 2019-03-09 16:20:46 +01:00
touch.cpp touch: Newly created files were accidentally marked as FIFO's. 2019-04-23 17:04:12 +02:00
tr.cpp Userland: Add a simple /bin/tr program. 2019-04-26 00:57:37 +02:00
true.cpp Build LibC and Userland with clang as well. 2018-11-09 14:29:00 +01:00
tst.cpp Make it possible for a process to switch controlling terminals. 2019-01-15 08:49:24 +01:00
tty.cpp Fix all current build warnings in the userland. 2018-11-09 10:19:33 +01:00
uc.cpp LibC: inet_pton() should return 1 on success, 0 or -1 on failure. 2019-06-06 05:25:18 +02:00
uname.cpp Move <utsname.h> to <sys/utsname.h> for correctness. 2018-11-09 10:24:41 +01:00
uptime.cpp Uptime: making the ouput prettier 2019-04-14 19:10:24 +02:00
whoami.cpp Userland: Add /bin/whoami 2019-05-16 20:18:17 +02:00
yes.cpp Userland: Add a /bin/yes program (fixes #110) 2019-06-01 12:16:55 +02:00