mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-12 06:46:48 +00:00
38 lines
583 B
Bash
Executable File
38 lines
583 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
SCRIPT_DIR=/regression
|
|
cd ${SCRIPT_DIR}
|
|
|
|
touch hello.txt
|
|
mv hello.txt hello_world.txt
|
|
rm hello_world.txt
|
|
|
|
awk '{print $2}' test_cmd.sh
|
|
cp test_cmd.sh test_cmd_backup.sh
|
|
cat test_cmd_backup.sh
|
|
rm test_cmd_backup.sh
|
|
|
|
ln -s test_cmd.sh tesk_cmd_soft_link
|
|
readlink -f tesk_cmd_soft_link
|
|
tail -n 1 tesk_cmd_soft_link
|
|
rm tesk_cmd_soft_link
|
|
|
|
ln test_cmd.sh tesk_cmd_hard_link
|
|
tail -n 1 tesk_cmd_hard_link
|
|
unlink tesk_cmd_hard_link
|
|
|
|
sed 3q test_cmd.sh
|
|
|
|
find . -name "*test_cmd*"
|
|
|
|
mkdir foo
|
|
rmdir foo
|
|
|
|
echo "Hello world from jinux" > hello.txt
|
|
rm hello.txt
|
|
|
|
cd ..
|