mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-03 05:14:22 +01:00
18472b53ac
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
7 lines
181 B
Bash
Executable File
7 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "soft process limit:" $(ulimit -S -u)
|
|
echo "hard process limit:" $(ulimit -H -u)
|
|
echo "soft nofile limit:" $(ulimit -S -n)
|
|
echo "hard nofile limit:" $(ulimit -H -n)
|