Removed submodules

This commit is contained in:
2026-05-31 14:34:00 -04:00
commit 46c36b11da
352 changed files with 14792 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
./bin/ls data
./bin/head Makefile
quit
+3
View File
@@ -0,0 +1,3 @@
./bin/ls -l
./bin/head -c 5 Makefile
quit
+12
View File
@@ -0,0 +1,12 @@
./bin/ls -a data
./bin/ls -s data
./bin/ls -sa data
./bin/chmod rw- rw- --- data/empty.txt
./bin/chmod r-- --- --x data/FIRST.txt
./bin/chmod rw- rw- rw- data/pwd.txt
./bin/chmod r-x r-x r-x data/yat.txt
./bin/chmod rwx --- --- data/.hidden.txt
./bin/chmod r-x --x r-- data/subdir
./bin/ls -ap data
./bin/head -n 1 Makefile
quit
+12
View File
@@ -0,0 +1,12 @@
/usr/bin/chmod 751 data/subdir
/usr/bin/chmod 640 data/empty.txt
/usr/bin/chmod 640 data/FIRST.txt
/usr/bin/chmod 400 data/.hidden.txt
/usr/bin/chmod 640 data/pwd.txt
/usr/bin/chmod 640 data/yat.txt
./bin/ls -a data
./bin/ls -s data
./bin/ls -sa data
./bin/ls -ap data
./bin/head -n 1 Makefile
quit
+6
View File
@@ -0,0 +1,6 @@
./bin/cut cut_data/data.spaces
./bin/cut -f 2 cut_data/data.spaces
./bin/cut cut_data/data.csv
./bin/cut -d , cut_data/data.csv
./bin/cut -d , -f 2 cut_data/data.csv
quit
+4
View File
@@ -0,0 +1,4 @@
./bin/cut -f -1 cut_data/data.spaces
./bin/cut -f 3 cut_data/data.spaces
./bin/cut -d , -f 5 cut_data/data.csv
quit
+4
View File
@@ -0,0 +1,4 @@
cd /usr/bin
pwd
which ls
quit
+3
View File
@@ -0,0 +1,3 @@
echo goodbye
echo hello\nworld
quit
+3
View File
@@ -0,0 +1,3 @@
echo hello
echo goodbye
quit
+3
View File
@@ -0,0 +1,3 @@
echo this has extra spaces
echo this\nhas\nnewlines
quit
+5
View File
@@ -0,0 +1,5 @@
export A=5
./bin/repeat 2 A
./bin/env B=6 ./bin/repeat 1 A
./bin/env C=10 ./bin/repeat 2 A 3 B 4 C
quit
+5
View File
@@ -0,0 +1,5 @@
export A=5
./bin/env ./bin/repeat 1 A
./bin/env B=6 C=7 ./bin/repeat 1 A 2 B 3 C
./bin/env C=7 ./bin/repeat 1 A 2 B 3 C | head -n 4
quit
+5
View File
@@ -0,0 +1,5 @@
which export
echo N=${NUM}
export NUM=5
echo N=${NUM}
quit
+6
View File
@@ -0,0 +1,6 @@
./bin/ls -a data | ./bin/head -n 1
./bin/ls -a data | ./bin/head -n 2000
./bin/head -n 1 cut_data/data.spaces | ./bin/cut -f 2
./bin/head -n 1 cut_data/data.csv | ./bin/cut -d , -f 1
./bin/head -n 1 cut_data/data.csv | ./bin/cut -d , -f 3
quit
+1
View File
@@ -0,0 +1 @@
quit
+5
View File
@@ -0,0 +1,5 @@
./bin/ls data
echo $?
./bin/ls asldfkjasldfkj
echo $?
quit
+5
View File
@@ -0,0 +1,5 @@
export SHELL=/bin/bash
export USER=me
./bin/repeat 1 USER
./bin/repeat 2 SHELL
quit
+4
View File
@@ -0,0 +1,4 @@
./bin/env A=5 ./bin/repeat 2 A
./bin/env A=5 B=6 C=7 ./bin/repeat 1 A 2 B 3 C
./bin/env A=10 ./bin/repeat 1 B
quit
+4
View File
@@ -0,0 +1,4 @@
./bin/cat cut_data/data.csv
./bin/cat cut_data/data.csv | ./bin/cut -d , -f 2
./bin/cat cut_data/data.csv | tail -n 1
quit
+8
View File
@@ -0,0 +1,8 @@
echo N=${NUM}
export NUM=5
echo N=${NUM}
unset NUM
echo N=${NUM}
export NUM=10
echo N=${NUM}
quit
+9
View File
@@ -0,0 +1,9 @@
which cd
which echo
which pwd
which which
which ./bin/ls
which ./bin/head
which ls
which head
quit
+3
View File
@@ -0,0 +1,3 @@
which ./bin/rm
which ./bin/cat
quit