mirror of
https://github.com/StefanSchippers/xschem.git
synced 2026-08-29 01:24:32 +02:00
12 lines
224 B
Bash
12 lines
224 B
Bash
#!/bin/bash
|
|
|
|
# Print current directory
|
|
echo "Current directory: $(pwd)"
|
|
|
|
# List files in the current directory
|
|
echo "Files in current directory:"
|
|
ls
|
|
|
|
# Display the current date and time
|
|
echo "Current date and time: $(date)"
|