serenity/Userland/Utilities
Shannon Booth e800605ad3 AK+LibURL: Move AK::URL into a new URL library
This URL library ends up being a relatively fundamental base library of
the system, as LibCore depends on LibURL.

This change has two main benefits:
 * Moving AK back more towards being an agnostic library that can
   be used between the kernel and userspace. URL has never really fit
   that description - and is not used in the kernel.
 * URL _should_ depend on LibUnicode, as it needs punnycode support.
   However, it's not really possible to do this inside of AK as it can't
   depend on any external library. This change brings us a little closer
   to being able to do that, but unfortunately we aren't there quite
   yet, as the code generators depend on LibCore.
2024-03-18 14:06:28 -04:00
..
pkg AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
abench.cpp LibCore+Utilities: Replace ElapsedTimer precise flag with an enum 2024-02-26 16:12:20 -07:00
aconv.cpp
adjtime.cpp
allocate.cpp
aplay.cpp
arp.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
asctl.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
base64.cpp base64: Implement -w/--wrap 2024-01-21 21:54:51 -05:00
basename.cpp
beep.cpp
blockdev.cpp
bt.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
cal.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
cat.cpp
checksum.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
chgrp.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
chmod.cpp
chown.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
chres.cpp
cksum.cpp cksum: Use the POSIX cksum algorithm rather than vanilla CRC32 2024-01-18 18:01:26 +03:30
clear.cpp
CMakeLists.txt AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
cmp.cpp
comm.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
config.cpp
copy.cpp
cp.cpp cp: Add --interactive/-i flag 2024-02-08 07:11:44 -07:00
cpp-lexer.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
cpp-parser.cpp
cpp-preprocessor.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
cut.cpp cut: Add -c,--characters option 2024-02-08 07:20:50 -07:00
date.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
dd.cpp LibCore+Utilities: Replace ElapsedTimer precise flag with an enum 2024-02-26 16:12:20 -07:00
df.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
diff.cpp
dirname.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
disasm.cpp disasm: Allow disassembling just one symbol 2024-01-22 20:54:16 -07:00
disk_benchmark.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
dmesg.cpp
drain.cpp Utilities/drain: Add an option to specify different block size 2023-12-12 06:44:10 -05:00
du.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
echo.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
env.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
errno.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
expr.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
false.cpp
fdtdump.cpp LibDeviceTree: Add a simple DeviceTree class 2024-02-24 16:43:44 -07:00
file.cpp LibCore: Replace MIME type description lookup with a more generic method 2024-03-16 08:42:33 +01:00
find.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
flock.cpp
fortune.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
functrace.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
glsl-compiler.cpp
gml-format.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
grep.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
gron.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
groupadd.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
groupdel.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
groups.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
gunzip.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
gzip.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
head.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
headless-browser.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
hello-world.jakt
hexdump.cpp
host.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
hostname.cpp
icc.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
id.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
ifconfig.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
image.cpp LibGfx+Fallout: Make ImageDecoder return ErrorOr 2024-03-07 11:20:06 -05:00
image2bin.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ini.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
install.cpp LibFileSystem+Userland: Return ByteString from absolute_path() 2024-01-16 08:42:34 +00:00
isobmff.cpp
jail-attach.cpp
jail-create.cpp
js.cpp LibJS: Never give back virtual memory once it belongs to a cell type 2023-12-31 15:35:56 +01:00
json.cpp Everywhere: Add deprecated_ prefix to JsonValue::to_byte_string 2024-01-12 17:41:34 -07:00
kcov-example.cpp
keymap.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
kill.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
killall.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
ldd.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
less.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
listdir.cpp Utilities: Add the listdir utility 2024-01-13 19:01:07 -07:00
ln.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
logout.cpp
ls.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
lsblk.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
lscpu.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
lsirq.cpp Everywhere: Add deprecated_ prefix to JsonValue::to_byte_string 2024-01-12 17:41:34 -07:00
lsjails.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
lsof.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
lspci.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
lsusb.cpp Everywhere: Prefer {:#x} over 0x{:x} in format strings 2024-02-21 17:54:38 +01:00
lzcat.cpp
man.cpp
markdown-check.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
matroska.cpp LibVideo: Replace DeprecatedFlyString with FlyString 2024-01-14 15:00:13 -07:00
md.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
memstat.cpp
mkdir.cpp
mkfifo.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
mkfs.fat.cpp mkfs.fat: Add support for autodetecting FAT type based on file size 2024-02-26 13:26:47 -07:00
mknod.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
mktemp.cpp mktemp: Ensure --tmpdir and template paths are concatenated correctly 2024-02-24 15:57:14 -07:00
mount.cpp Userland/mount: Fix srcobfuscate => srchidden when printing mounts 2024-03-14 18:18:39 -06:00
mv.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
nc.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
netstat.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
network-settings.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
nl.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
nohup.cpp nohup: Use return code 127 for errors caught by serenity_main() 2024-01-19 12:16:56 -07:00
nologin.cpp
notify.cpp
nproc.cpp
ntpquery.cpp ntpquery: Use AK::convert_between_host_and_network_endian 2024-02-06 04:37:47 -07:00
open.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
passwd.cpp
paste.cpp Utilities: Use Core::Environment instead of Core::System::*env() 2024-02-27 08:33:48 +00:00
patch.cpp patch+LibDiff: Add support for applying patches with preprocessor macro 2024-03-03 08:56:00 +01:00
pathchk.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
pdf.cpp pdf: Honor page rotation 2024-02-27 07:02:02 +01:00
pgrep.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
pidof.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
ping.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
pixelflut.cpp pixelflut: Implement alternative flooding strategies 2024-01-12 16:10:28 -07:00
pkill.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
pledge.cpp Utilities: Use Core::Environment instead of Core::System::*env() 2024-02-27 08:33:48 +00:00
pls.cpp
pmap.cpp Everywhere: Add deprecated_ prefix to JsonValue::to_byte_string 2024-01-12 17:41:34 -07:00
pmemdump.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
printf.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
pro.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
profile.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
ps.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
purge.cpp
pwd.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
readelf.cpp LibELF+readelf: Add support for RISC-V dynamic relocation types 2024-02-24 16:05:50 -07:00
readlink.cpp
realpath.cpp
reboot.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
rev.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
rm.cpp
rmdir.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
route.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
run-tests.cpp Utilities: Use Core::Environment instead of Core::System::*env() 2024-02-27 08:33:48 +00:00
sed.cpp Userland+Tests: Remove unused <AK/Tuple.h> includes 2024-03-01 14:05:53 -07:00
seq.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
shot.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
shuf.cpp
shutdown.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
sleep.cpp
slugify.cpp
sort.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
sql.cpp Ladybird+Userland: Use ByteString for candidate server paths 2024-02-26 13:16:27 -07:00
stat.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
strace.cpp strace: Add support for pretty-printing the prctl syscall 2024-03-02 09:10:14 +01:00
strings.cpp
stty.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
su.cpp Utilities: Use Core::Environment instead of Core::System::*env() 2024-02-27 08:33:48 +00:00
sync.cpp
syscall.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
sysctl.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
tac.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
tail.cpp tail: Collapse repeated error handling into statement expression 2024-02-24 15:48:36 -07:00
tar.cpp tar: Remove unnecessary conversions to String 2024-01-29 23:14:39 +00:00
tee.cpp
telws.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
test-bindtodevice.cpp
test-fuzz.cpp Fuzzers: Add JBIG2 fuzzer 2024-03-09 16:01:22 +01:00
test-imap.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
test-jpeg-roundtrip.cpp test-jpeg-roundtrip: Add a few more colors 2024-01-14 11:35:40 +00:00
test-pthread.cpp
test-unveil.cpp
test.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
test_env.cpp
timezone.cpp
top.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
touch.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
tr.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
traceroute.cpp LibCore+Utilities: Replace ElapsedTimer precise flag with an enum 2024-02-26 16:12:20 -07:00
tree.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
true.cpp
truncate.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
tsort.cpp Everywhere: Prefer VERIFY over assert() 2024-02-05 07:03:53 -05:00
tt.cpp
ttfdisasm.cpp
tty.cpp
umount.cpp
uname.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
uniq.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
unveil.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
unzip.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
update-cpp-test-results.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
uptime.cpp uptime: Add -s/--since option to output only when the system came online 2024-01-25 09:07:32 +01:00
useradd.cpp useradd: Don't crash on -m if directory already exists 2024-02-23 09:52:08 +01:00
userdel.cpp
usermod.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
utmpupdate.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
w.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
wallpaper.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
wasm.cpp wasm: Make --arg use a more useful value format 2024-02-18 23:50:50 +01:00
watch.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
wc.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
which.cpp
whoami.cpp
wsctl.cpp
xargs.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
xml.cpp AK+LibURL: Move AK::URL into a new URL library 2024-03-18 14:06:28 -04:00
xxd.cpp Everywhere: Prefer {:#x} over 0x{:x} in format strings 2024-02-21 17:54:38 +01:00
xzcat.cpp
yes.cpp
zip.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30